toLocale method

Locale toLocale()

Implementation

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