setLocale method

void setLocale(
  1. Locale locale
)

Updates the Locale and persists the choice.

Implementation

void setLocale(Locale locale) {
  if (_locale == locale) return;
  _locale = locale;
  notifyListeners();
  _persist();
}