MollieOrderRequest constructor

MollieOrderRequest({
  1. MollieAmount? amount,
  2. MollieAddress? billingAddress,
  3. MollieAddress? shippingAddress,
  4. dynamic metaData,
  5. String? consumerDateOfBirth,
  6. String? locale,
  7. String? webhookUrl,
  8. String? redirectUrl,
  9. List<MollieProductRequest>? products,
  10. String? method,
  11. String? orderNumber,
})

Implementation

MollieOrderRequest(
    {this.amount,
    this.billingAddress,
    this.shippingAddress,
    this.metaData,
    this.consumerDateOfBirth,
    this.locale,
    this.webhookUrl,
    this.redirectUrl,
    this.products,
    this.method,
    this.orderNumber});