color property

String color

Gets or sets the color of a solid Brush. The default value is 'black'. The value must be a valid CSS color string.

Implementation

_i2.String get color => _i4.getProperty(
      this,
      'color',
    );
void color=(String value)

Implementation

set color(_i2.String value) {
  _i4.setProperty(
    this,
    'color',
    value,
  );
}