CampoListaCidade constructor

const CampoListaCidade({
  1. Key? key,
  2. Cidade? value,
  3. dynamic nomeEstadoOuUFOuIBGEouRegiao,
  4. required void onChanged(
    1. Cidade?
    ),
  5. String? validator(
    1. Cidade?
    )?,
  6. String? label,
  7. bool readOnly = false,
  8. IconData? icon = Icons.location_city,
  9. bool isAutoComplete = false,
  10. bool useIbge = false,
})

Implementation

const CampoListaCidade({
  super.key,
  this.value,
  this.nomeEstadoOuUFOuIBGEouRegiao,
  required this.onChanged,
  this.validator,
  this.label,
  this.readOnly = false,
  this.icon = Icons.location_city,
  this.isAutoComplete = false,
  this.useIbge = false,
});