getLocaleText static method
Implementation
static Text getLocaleText(L10nLocale l) => Text(l.label != null
? l.label!
: l.languageCode + (l.countryCode != null ? '_' + l.countryCode! : ''));
static Text getLocaleText(L10nLocale l) => Text(l.label != null
? l.label!
: l.languageCode + (l.countryCode != null ? '_' + l.countryCode! : ''));