color property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String getcolor

Gets the value of "color"

Implementation

String get color => getPropertyValue('color');

setcolor (String value)

Sets the value of "color"

Implementation

set color(String value) {
  setProperty('color', value, '');
}