ConfirmationPage constructor

const ConfirmationPage({
  1. Key? key,
  2. required String email,
  3. required String firstName,
  4. required String? middleName,
  5. required String lastName,
  6. required String idNumber,
  7. required String phoneNumber,
  8. required String addressEn,
  9. required String dobDay,
  10. required String dobMonth,
  11. required String dobYear,
  12. required String expiryDay,
  13. required String expiryMonth,
  14. required String expiryYear,
  15. required String visaStatus,
  16. required String ptsDay,
  17. required String ptsMonth,
  18. required String ptsYear,
  19. required String ptlDay,
  20. required String ptlMonth,
  21. required String ptlYear,
  22. required String? gender,
  23. required String addressJa,
  24. required String address1Ja,
  25. required String address2Ja,
  26. required String address3Ja,
  27. required String address1En,
  28. required String address2En,
  29. required String address3En,
  30. required String postalCode,
})

Implementation

const ConfirmationPage({
  super.key,
  required this.email,
  required this.firstName,
  required this.middleName,
  required this.lastName,
  required this.idNumber,
  required this.phoneNumber,
  required this.addressEn,
  required this.dobDay,
  required this.dobMonth,
  required this.dobYear,
  required this.expiryDay,
  required this.expiryMonth,
  required this.expiryYear,
  required this.visaStatus,
  required this.ptsDay,
  required this.ptsMonth,
  required this.ptsYear,
  required this.ptlDay,
  required this.ptlMonth,
  required this.ptlYear,
  required this.gender,
  required this.addressJa,
  required this.address1Ja,
  required this.address2Ja,
  required this.address3Ja,
  required this.address1En,
  required this.address2En,
  required this.address3En,
  required this.postalCode,
});