PaymentResponse constructor

PaymentResponse({
  1. String? createdAt,
  2. String? id,
  3. List<PaymentItem>? items,
  4. String? notes,
  5. String? number,
  6. int? paidAmount,
  7. List<Payment>? payments,
  8. int? pendingAmount,
  9. int? price,
  10. String? reference,
  11. String? status,
  12. String? type,
  13. String? updatedAt,
})

Implementation

PaymentResponse(
    {this.createdAt,
    this.id,
    this.items,
    this.notes,
    this.number,
    this.paidAmount,
    this.payments,
    this.pendingAmount,
    this.price,
    this.reference,
    this.status,
    this.type,
    this.updatedAt});