StateDropdownField constructor

const StateDropdownField({
  1. Key? key,
  2. StateModel? initialValue,
  3. String? countryId,
  4. ValueChanged<StateModel?>? onChanged,
  5. String? errorText,
  6. bool enabled = true,
  7. String label = 'State',
  8. String hint = 'Select state',
})

Implementation

const StateDropdownField({
  super.key,
  this.initialValue,
  this.countryId,
  this.onChanged,
  this.errorText,
  this.enabled = true,
  this.label = 'State',
  this.hint = 'Select state',
});