resultStatusBackgroundColor property

  1. @Deprecated("Not used in new UI")
dynamic get resultStatusBackgroundColor

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

Implementation

@Deprecated("Not used in new UI")
Color? get resultStatusBackgroundColor => _resultStatusBackgroundColor;
set resultStatusBackgroundColor (dynamic val)

Implementation

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