RequestResponse constructor

RequestResponse({
  1. String? cusPhone,
  2. String? amount,
  3. String? invoiceId,
  4. String? paymentMethod,
  5. String? paymentNumber,
  6. String? transactionId,
  7. DateTime? date,
  8. ResponseStatus? status,
  9. dynamic valueA,
  10. dynamic valueB,
  11. dynamic valueC,
  12. dynamic valueD,
  13. dynamic valueE,
  14. dynamic valueF,
  15. dynamic valueG,
})

Implementation

RequestResponse({
  this.cusPhone,
  this.amount,
  this.invoiceId,
  this.paymentMethod,
  this.paymentNumber,
  this.transactionId,
  this.date,
  this.status,
  this.valueA,
  this.valueB,
  this.valueC,
  this.valueD,
  this.valueE,
  this.valueF,
  this.valueG,
});