setMenuItemBackgroundSchemeColor method

void setMenuItemBackgroundSchemeColor(
  1. SchemeColor? value, [
  2. bool notify = true
])

Implementation

void setMenuItemBackgroundSchemeColor(SchemeColor? value, [bool notify = true]) {
  if (value == _menuItemBackgroundSchemeColor) return;
  _menuItemBackgroundSchemeColor = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyMenuItemBackgroundSchemeColor, value));
}