StateDropdown constructor

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

Implementation

const StateDropdown({
  super.key,
  required this.country,
  required this.onChanged,
  this.value,
  this.label = 'State / Region',
  this.hint = 'Select State',
  this.fieldStyle = TextFieldStyle.outlined,
});