statusBackgroundColor property
Allows you to set a background color for the status messages.
Default: Colors.transparent.
Implementation
Color? get statusBackgroundColor => _statusBackgroundColor;
Implementation
set statusBackgroundColor(Color? val) {
_statusBackgroundColor = val;
_setCustomization({"statusBackgroundColor": _intFromColor(val)}, this);
}