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