statusBackgroundColor property

Color? statusBackgroundColor

Allows you to set a background color for the status messages.

Default: Colors.transparent.

Implementation

Color? get statusBackgroundColor => _statusBackgroundColor;
void statusBackgroundColor=(Color? val)

Implementation

set statusBackgroundColor(Color? val) {
  _statusBackgroundColor = val;
  _set({"statusBackgroundColor": _intFromColor(val)});
}