AddressInput<T>  constructor 
      const
      AddressInput<T> ({ 
    
    
- Key? key,
- AddressLabels<T> labels = const AddressLabels(),
- AddressValue<T> value = const AddressValue._(),
- bool enabled = true,
- bool showDescriptionField = false,
- bool showCountyField = false,
- bool showCountryField = false,
- Validator? postalCodeValidator,
- List<Country> ? countryPriorityList,
- FocusCallback? onFocus,
- FocusNode? focusNode,
- required AddressInputCallback<T> onChanged,
Implementation
const AddressInput({
  super.key,
  this.labels = const AddressLabels(),
  this.value = const AddressValue._(),
  this.enabled = true,
  this.showDescriptionField = false,
  this.showCountyField = false,
  this.showCountryField = false,
  this.postalCodeValidator,
  this.countryPriorityList,
  this.onFocus,
  this.focusNode,
  required this.onChanged,
});