parse static method

TDeskAppLocale parse(
  1. String rawLocale
)

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

Implementation

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