gridArea property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getgridArea
Gets the value of "grid-area"
Implementation
String get gridArea => getPropertyValue('grid-area');
setgridArea (String value)
Sets the value of "grid-area"
Implementation
set gridArea(String value) {
setProperty('grid-area', value, '');
}