PaymayaBuyer constructor

const PaymayaBuyer({
  1. required String firstName,
  2. required String middleName,
  3. required String lastName,
  4. required String birthday,
  5. required String customerSince,
  6. String? sex,
  7. required PaymayaContact contact,
  8. required PaymayaShippingAddress shippingAddress,
  9. required PaymayaBillingAddress billingAddress,
})

/ The PaymayaBuyer will be inserted after the redirect url response.

Implementation

const PaymayaBuyer({
  required this.firstName,
  required this.middleName,
  required this.lastName,
  required this.birthday,
  required this.customerSince,
  this.sex,
  required this.contact,
  required this.shippingAddress,
  required this.billingAddress,
});