borderBottom property - CssStyleDeclaration class - dart:html library (original) (raw)
String getborderBottom
override
Gets the value of "border-bottom"
Implementation
String get borderBottom => this._borderBottom;
setborderBottom (String? value)
override
Sets the value of "border-bottom"
Implementation
set borderBottom(String? value) {
_borderBottom = value == null ? '' : value;
}