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