CountryPicker constructor

CountryPicker({
  1. Key? key,
  2. PickerProps<Country>? pickerProps,
  3. bool showCountryFlag = true,
})

Implementation

CountryPicker({
  super.key,
  PickerProps<Country>? pickerProps,
  this.showCountryFlag = true,
}) : pickerProps = pickerProps ?? DefaultProps.countryPickerProps;