supportedLocales property

Iterable<Locale>? get supportedLocales

Returns an iteration of the App's locales.

Implementation

static Iterable<Locale>? get supportedLocales => _appState?.supportedLocales;
set supportedLocales (Iterable<Locale>? v)

Implementation

static set supportedLocales(Iterable<Locale>? v) {
  if (v != null) {
    _appState?.supportedLocales = v;
  }
}