PaymentItem constructor

PaymentItem({
  1. String? description,
  2. String? details,
  3. String? id,
  4. String? name,
  5. int? quantity,
  6. String? reference,
  7. String? sku,
  8. String? unitOfMeasure,
  9. int? unitPrice,
})

Implementation

PaymentItem(
    {this.description,
    this.details,
    this.id,
    this.name,
    this.quantity,
    this.reference,
    this.sku,
    this.unitOfMeasure,
    this.unitPrice});