CountryItemWidget constructor

const CountryItemWidget({
  1. Key? key,
  2. required Country country,
  3. required dynamic onChangeCountry(
    1. BuildContext context,
    2. Country newCountry
    ),
})

Implementation

const CountryItemWidget({
  Key? key,
  required this.country,
  required this.onChangeCountry,
}) : super(key: key);