localizationsDelegates property

Iterable<LocalizationsDelegate>? get localizationsDelegates

Returns the App's current localizations delegates.

Implementation

Iterable<LocalizationsDelegate<dynamic>>? get localizationsDelegates =>
    appState?.localizationsDelegates;
set localizationsDelegates (Iterable<LocalizationsDelegate>? v)

Implementation

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