localizationsDelegates property
Iterable<LocalizationsDelegate> ?
get
localizationsDelegates
Returns the App's current localizations delegates.
Implementation
static Iterable<LocalizationsDelegate<dynamic>>? get localizationsDelegates =>
_appState?.localizationsDelegates;
set
localizationsDelegates
(Iterable<LocalizationsDelegate> ? v)
Implementation
static set localizationsDelegates(
Iterable<LocalizationsDelegate<dynamic>>? v) {
if (v != null) {
_appState?.localizationsDelegates = v;
}
}