supportedLocales constant

List<Locale> const supportedLocales

A list of this localizations delegate's supported locales.

Implementation

static const List<Locale> supportedLocales = <Locale>[
  Locale('ar'),
  Locale('en'),
  Locale('ja'),
  Locale('ko'),
  Locale('zh'),
  Locale.fromSubtags(languageCode: 'zh', scriptCode: 'Hans'),
  Locale.fromSubtags(languageCode: 'zh', scriptCode: 'Hant')
];