parse static method

AppLocale parse(
  1. String rawLocale
)

Returns the enum type of the raw locale. Fallbacks to base locale.

Implementation

static AppLocale parse(String rawLocale) {
	return _selectLocale(rawLocale) ?? _baseLocale;
}