setFabAlwaysCircular method
Implementation
void setFabAlwaysCircular(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _fabAlwaysCircular) return;
_fabAlwaysCircular = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyFabAlwaysCircular, value));
}