localizationsDelegates property

Iterable<LocalizationsDelegate> get localizationsDelegates

Apply all the needed delegate and the package delegate for the app. This will use at the MaterialApp

Implementation

Iterable<LocalizationsDelegate<dynamic>> get localizationsDelegates => [
      _delegate,
      GlobalMaterialLocalizations.delegate,
      GlobalWidgetsLocalizations.delegate,
      GlobalCupertinoLocalizations.delegate,
    ];