setFabAlwaysCircular method

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

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));
}