TransactionResponse constructor

TransactionResponse(
  1. String paymentDate,
  2. double amountPayable,
  3. double amountPaid,
  4. String paymentMethod,
  5. String transactionStatus,
  6. String transactionReference,
  7. String paymentReference,
)

Implementation

TransactionResponse(
    this.paymentDate,
    this.amountPayable,
    this.amountPaid,
    this.paymentMethod,
    this.transactionStatus,
    this.transactionReference,
    this.paymentReference);