PaymobBillingData constructor

PaymobBillingData({
  1. String? email,
  2. String? firstName,
  3. String? lastName,
  4. String? phoneNumber,
  5. String? apartment,
  6. String? floor,
  7. String? street,
  8. String? building,
  9. String? postalCode,
  10. String? city,
  11. String? state,
  12. String? country,
  13. String? shippingMethod,
})

Implementation

PaymobBillingData({
  this.email,
  this.firstName,
  this.lastName,
  this.phoneNumber,
  this.apartment,
  this.floor,
  this.street,
  this.building,
  this.postalCode,
  this.city,
  this.state,
  this.country,
  this.shippingMethod,
});