PaymentData constructor

PaymentData({
  1. int? id,
  2. String? domain,
  3. String? status,
  4. String? reference,
  5. String? receiptNumber,
  6. int? amount,
  7. String? message,
  8. String? gatewayResponse,
  9. String? paidAt,
  10. String? createdAt,
  11. String? channel,
  12. String? currency,
  13. String? ipAddress,
  14. int? fees,
  15. dynamic feesSplit,
  16. Authorization? authorization,
  17. Customer? customer,
})

Implementation

PaymentData({
  this.id,
  this.domain,
  this.status,
  this.reference,
  this.receiptNumber,
  this.amount,
  this.message,
  this.gatewayResponse,
  this.paidAt,
  this.createdAt,
  this.channel,
  this.currency,
  this.ipAddress,
  this.fees,
  this.feesSplit,
  this.authorization,
  this.customer,
});