statusTextColor property

dynamic statusTextColor

Allows you to set a color for the status messages.

Default: Colors.white.

Implementation

Color? get statusTextColor => _statusTextColor;
void statusTextColor=(dynamic val)

Implementation

set statusTextColor(Color? val) {
  _statusTextColor = val;
  _setCustomization({"statusTextColor": _intFromColor(val)}, this);
}