height property - CssStyleDeclaration class - dart:html library (original) (raw)
String getheight
override
Gets the value of "height"
Implementation
String get height => this._height;
setheight (String? value)
override
Sets the value of "height"
Implementation
set height(String? value) {
_height = value == null ? '' : value;
}