setButtonBackground method

void setButtonBackground(
  1. Color value
)

Set Button Background

Implementation

void setButtonBackground(Color value) {
  if (_buttonBackground != value) {
    _buttonBackground = value;
    _state?.refresh();
  }
}