getLocale static method
Implementation
static Locale getLocale(SupportedLocale supportedLocale) {
switch (supportedLocale) {
case SupportedLocale.en:
return const Locale('en');
case SupportedLocale.vi:
return const Locale('vi');
}
}