getDisplayCountry method

String getDisplayCountry(
  1. Locale locale
)

Implementation

String getDisplayCountry(Locale locale) {
  final territory = _locales[locale.language];
  return territory?[country] ?? '';
}