AddressInput<T> constructor

const AddressInput<T>({
  1. Key? key,
  2. AddressLabels<T> labels = const AddressLabels(),
  3. AddressValue<T> value = const AddressValue._(),
  4. bool enabled = true,
  5. bool showDescriptionField = false,
  6. bool showCountyField = false,
  7. bool showCountryField = false,
  8. Validator? postalCodeValidator,
  9. List<Country>? countryPriorityList,
  10. FocusCallback? onFocus,
  11. FocusNode? focusNode,
  12. 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,
});