MollieProductRequest constructor

MollieProductRequest({
  1. String? type,
  2. String? sku,
  3. String? name,
  4. String? productUrl,
  5. String? imageUrl,
  6. int? quantity,
  7. String? vatRate,
  8. MollieAmount? unitPrice,
  9. MollieAmount? totalAmount,
  10. MollieAmount? discountAmount,
  11. MollieAmount? vatAmount,
})

Implementation

MollieProductRequest(
    {this.type,
    this.sku,
    this.name,
    this.productUrl,
    this.imageUrl,
    this.quantity,
    this.vatRate,
    this.unitPrice,
    this.totalAmount,
    this.discountAmount,
    this.vatAmount});