color property

Color? color

Returns the color of the text.

Implementation

ui.Color? get color {
  return _style!.color;
}
void color=(Color? value)

Sets the color of the text.

Implementation

set color(ui.Color? value) {
  _style = _style!.copyWith(color: value);
  _invalidBuilder = true;
  // _invalidateBuilder();
}