Customer constructor

Customer({
  1. String? name,
  2. String? lastName,
  3. required String email,
  4. required String phone,
  5. required String city,
  6. required String country,
  7. required String address,
  8. String? zip = "12345",
  9. String? ip,
})

Implementation

Customer({
   this.name,
   this.lastName,
  required this.email,
  required this.phone,
  required this.city,
  required this.country,
  required this.address,
  this.zip = "12345",
  this.ip,
  // required this.redirect,
});