localizationsDelegates property

Iterable<LocalizationsDelegate>? localizationsDelegates

Returns the App's current localizations delegates.

Implementation

static Iterable<LocalizationsDelegate<dynamic>>? get localizationsDelegates =>
    _appState?.localizationsDelegates;
void localizationsDelegates=(Iterable<LocalizationsDelegate>? v)

Implementation

static set localizationsDelegates(
    Iterable<LocalizationsDelegate<dynamic>>? v) {
  if (v != null) {
    _appState?.localizationsDelegates = v;
  }
}