FedaTransaction constructor

FedaTransaction({
  1. int? id,
  2. String? reference,
  3. String? description,
  4. double? amount,
  5. String? status,
  6. String? mode,
  7. double? amount_debited,
  8. String? receipt_url,
  9. String? operator_fees,
  10. String? approved_at,
  11. String? created_at,
  12. String? updated_at,
  13. String? canceled_at,
  14. String? declined_at,
  15. String? refunded_at,
  16. String? transferred_at,
})

Implementation

FedaTransaction({
  this.id,
  this.reference,
  this.description,
  this.amount,
  this.status,
  this.mode,
  this.amount_debited,
  this.receipt_url,
  this.operator_fees,
  this.approved_at,
  this.created_at,
  this.updated_at,
  this.canceled_at,
  this.declined_at,
  this.refunded_at,
  this.transferred_at,
});