getDefaultFlagImage static method

Widget getDefaultFlagImage(
  1. Country country
)

Implementation

static Widget getDefaultFlagImage(Country country) {
  return Image.asset(
    CountryPickerUtils.getFlagImageAssetPath(country.isoCode),
    height: 20.0,
    width: 30.0,
    fit: BoxFit.fill,
    package: "mmoo_country_pickers",
  );
}