setMenuPaddingBottom method
Implementation
void setMenuPaddingBottom(double? value, [bool notify = true]) {
if (value == _menuPaddingBottom) return;
_menuPaddingBottom = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyMenuPaddingBottom, value));
}