CountryItem constructor

const CountryItem({
  1. Key? key,
  2. required CountryWithPhoneCode country,
  3. required VoidCallback onTap,
})

Implementation

const CountryItem({
  super.key,
  required this.country,
  required this.onTap,
});