toLocale method
Implementation
Locale toLocale() {
switch (this) {
case 'EN_US':
return Locale.enUs;
}
throw Exception('$this is not known in enum Locale');
}
Locale toLocale() {
switch (this) {
case 'EN_US':
return Locale.enUs;
}
throw Exception('$this is not known in enum Locale');
}