PaywayCheckTransactionResponse constructor

PaywayCheckTransactionResponse({
  1. int status = 11,
  2. String description = "Unknown Error",
  3. double amount = 0.00,
  4. double? totalAmount,
  5. String apv = "",
  6. String paymentStatus = "Pending",
  7. DateTime? datetime,
  8. ABATransactionCurrency? originalCurrency,
  9. List<Map>? payout,
  10. String? tranId,
  11. String? firstname,
  12. String? lastname,
  13. String? phone,
  14. String? email,
  15. String? paymentType,
})

Implementation

PaywayCheckTransactionResponse({
  this.status = 11,
  this.description = "Unknown Error",
  this.amount = 0.00,
  this.totalAmount,
  this.apv = "",
  this.paymentStatus = "Pending",
  this.datetime,
  this.originalCurrency,
  this.payout,
  this.tranId,
  this.firstname,
  this.lastname,
  this.phone,
  this.email,
  this.paymentType,
});