Shipping constructor

Shipping({
  1. required String firstName,
  2. required String lastName,
  3. required String email,
  4. required String phone,
  5. required String address,
  6. required String city,
  7. required String region,
  8. required String country,
  9. required String postalCode,
  10. required String idType,
  11. required String idNumber,
})

Creates a new instance of Shipping with the given parameters.

Implementation

Shipping({
  required this.firstName,
  required this.lastName,
  required this.email,
  required this.phone,
  required this.address,
  required this.city,
  required this.region,
  required this.country,
  required this.postalCode,
  required this.idType,
  required this.idNumber,
});