onLocalizationsDelegates method
Returns the 'Localization Delegates' if any. @mustCallSuper
Implementation
Iterable<LocalizationsDelegate<dynamic>> onLocalizationsDelegates() sync* {
if (localizationsDelegates != null) {
yield* localizationsDelegates!;
}
if (inLocalizationsDelegates != null) {
yield* inLocalizationsDelegates!();
}
if (v.L10n.delegate != null) {
yield v.L10n.delegate!;
}
}