TransactionModel constructor

TransactionModel({
  1. String? ref,
  2. String? operatorId,
  3. String? transactionId,
  4. String? numberUser,
  5. String? nameUser,
  6. String? emailUser,
  7. String? countryUser,
  8. String? currency,
  9. String? amount,
  10. String? fees,
  11. String? amountReceive,
  12. String? amountTotal,
  13. String? status,
  14. String? typeTransaction,
  15. String? typePayment,
  16. String? date,
  17. String? dateUpdate,
})

Implementation

TransactionModel({
  this.ref,
  this.operatorId,
  this.transactionId,
  this.numberUser,
  this.nameUser,
  this.emailUser,
  this.countryUser,
  this.currency,
  this.amount,
  this.fees,
  this.amountReceive,
  this.amountTotal,
  this.status,
  this.typeTransaction,
  this.typePayment,
  this.date,
  this.dateUpdate,
});