fromLocale static method
Implementation
static SupportedLocale fromLocale(Locale locale) {
switch (locale.languageCode) {
case 'en':
return SupportedLocale.en;
case 'vi':
return SupportedLocale.vi;
default:
throw Exception('unsupported locale $locale');
}
}