localize method

CountryCode localize(
  1. BuildContext context
)

Convenient getter for localized version of this country code.

Implementation

CountryCode localize(BuildContext context) => copyWith(
      name: CountryLocalizations.of(context)?.translation(code),
    );