CountryItemWidget constructor
const
CountryItemWidget({
- Key? key,
- required Country country,
- required dynamic onChangeCountry(
- BuildContext context,
- Country newCountry
Implementation
const CountryItemWidget({
Key? key,
required this.country,
required this.onChangeCountry,
}) : super(key: key);