CountryPicker constructor

const CountryPicker({
  1. Key? key,
  2. ValueChanged<CountryPicked?>? onChanged,
  3. String? initialSelection,
  4. List<String>? favorite,
})

Implementation

const CountryPicker({
  Key? key,
  this.onChanged,
  this.initialSelection,
  this.favorite,
}) : super(key: key);