flutterLocale property
Locale
get
flutterLocale
Implementation
Locale get flutterLocale {
switch (this) {
case AppLocale.en: return const Locale.fromSubtags(languageCode: 'en');
case AppLocale.zh: return const Locale.fromSubtags(languageCode: 'zh');
}
}