CountryStateCityPicker constructor

const CountryStateCityPicker({
  1. Key? key,
  2. required TextEditingController country,
  3. required TextEditingController state,
  4. required TextEditingController city,
  5. InputDecoration? textFieldDecoration,
  6. Color? dialogColor,
})

Implementation

const CountryStateCityPicker(
    {super.key,
    required this.country,
    required this.state,
    required this.city,
    this.textFieldDecoration,
    this.dialogColor});