localizationDelegates property

List<LocalizationsDelegate> localizationDelegates

The delegates for this app's Localizations widget.

The delegates collectively define all of the localized resources for this application's Localizations widget. return

  delegates = [
    delegate
    GlobalMaterialLocalizations.delegate,
    GlobalWidgetsLocalizations.delegate,
    GlobalCupertinoLocalizations.delegate
  ],

Implementation

List<LocalizationsDelegate> get localizationDelegates =>
    EasyLocalization.of(this)!.delegates;