borderTop property - CssStyleDeclaration class - dart:html library (original) (raw)
String getborderTop
override
Gets the value of "border-top"
Implementation
String get borderTop => this._borderTop;
setborderTop (String? value)
override
Sets the value of "border-top"
Implementation
set borderTop(String? value) {
_borderTop = value == null ? '' : value;
}