StateDropdown constructor
const
StateDropdown({
- Key? key,
- required Country? country,
- required ValueChanged<
State?> onChanged, - State? value,
- String label = 'State / Region',
- String hint = 'Select State',
- 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,
});