AddressForm constructor

AddressForm({
  1. required AddressDetails value,
  2. required IconData? icon,
  3. required Function saveValue,
  4. required Widget buttons,
  5. required double width,
  6. required double height,
  7. bool header = true,
  8. FocusNode? focus,
  9. FocusNode? nextFocusNode,
  10. bool responseOverride = false,
})

Implementation

AddressForm({
  required this.value,
  required this.icon,
  required this.saveValue,
  required this.buttons,
  required this.width,
  required this.height,
  this.header = true,
  this.focus,
  this.nextFocusNode,
  this.responseOverride = false,
});