CountryDropdown constructor

const CountryDropdown({
  1. Key? key,
  2. required ValueChanged<Country?> onChanged,
  3. Country? value,
  4. String label = 'Country',
  5. String hint = 'Select Country',
  6. TextFieldStyle fieldStyle = TextFieldStyle.outlined,
})

Implementation

const CountryDropdown({
  super.key,
  required this.onChanged,
  this.value,
  this.label = 'Country',
  this.hint = 'Select Country',
  this.fieldStyle = TextFieldStyle.outlined,
});