onLocalizationsDelegates method

Iterable<LocalizationsDelegate> onLocalizationsDelegates()

Returns the 'Localization Delegates' if any. @mustCallSuper

Implementation

Iterable<LocalizationsDelegate<dynamic>> onLocalizationsDelegates() sync* {
  if (localizationsDelegates != null) {
    yield* localizationsDelegates!;
  }
  if (inLocalizationsDelegates != null) {
    yield* inLocalizationsDelegates!();
  }
}