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