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