CountryDropdownField constructor

const CountryDropdownField({
  1. Key? key,
  2. CountryModel? initialValue,
  3. ValueChanged<CountryModel?>? onChanged,
  4. String? errorText,
  5. bool enabled = true,
  6. String label = 'Country',
  7. String hint = 'Select country',
})

Implementation

const CountryDropdownField({
  super.key,
  this.initialValue,
  this.onChanged,
  this.errorText,
  this.enabled = true,
  this.label = 'Country',
  this.hint = 'Select country',
});