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