UCountryProvincePicker constructor

const UCountryProvincePicker({
  1. Key? key,
  2. UCountry? initialCountry,
  3. UProvince? initialProvince,
  4. void onCountryChanged(
    1. UCountry country
    )?,
  5. void onProvinceChanged(
    1. UProvince province
    )?,
  6. void onCityChanged(
    1. UCity? city
    )?,
  7. double spacing = 6,
})

Implementation

const UCountryProvincePicker({
  super.key,
  this.initialCountry,
  this.initialProvince,
  this.onCountryChanged,
  this.onProvinceChanged,
  this.onCityChanged,
  this.spacing = 6,
});