getTranslatedName method

String? getTranslatedName(
  1. BuildContext context
)

Implementation

String? getTranslatedName(BuildContext context) {
  return CountryLocalizations.of(context)
      ?.countryName(countryCode: countryCode);
}