getLocalizationsDelegates method

List<LocalizationsDelegate> getLocalizationsDelegates()

Returns a list of all the localizations delegates that are associated with the registered features.

Implementation

List<LocalizationsDelegate> getLocalizationsDelegates() {
  final delegates = <LocalizationsDelegate>[];
  for (final feature in _features.values) {
    delegates.addAll(feature.localizationsDelegates);
  }
  return delegates;
}