Checkout constructor

Checkout({
  1. Address? prePopulateShippingAddress,
  2. String? prePopulateBuyerEmail,
  3. String? merchantSupportEmail,
  4. bool? askForShippingAddress,
  5. String? redirectUrl,
  6. List<AdditionalRecipient>? additionalRecipients,
  7. Order? order,
  8. String? id,
  9. String? createdAt,
  10. String? checkoutPageUrl,
})

Implementation

Checkout({
  this.prePopulateShippingAddress, this.prePopulateBuyerEmail, this.merchantSupportEmail,
this.askForShippingAddress, this.redirectUrl, this.additionalRecipients,
  this.order, this.id, this.createdAt, this.checkoutPageUrl
});