resultStatusBackgroundColor property

Color? resultStatusBackgroundColor

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

Implementation

Color? get resultStatusBackgroundColor => _resultStatusBackgroundColor;
void resultStatusBackgroundColor=(Color? val)

Implementation

set resultStatusBackgroundColor(Color? val) {
  _resultStatusBackgroundColor = val;
  _set({"resultStatusBackgroundColor": _intFromColor(val)});
}