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