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