textColor property

Color? textColor

Implementation

Color? get textColor => _textColor;
void textColor=(Color? newValue)

Implementation

set textColor(Color? newValue) {
  this.updateProperty('color', newValue: newValue);
  this._textColor = newValue;
}