TransactionModel constructor

TransactionModel({
  1. int? id,
  2. int? type,
  3. String? displayId,
  4. num? amount,
  5. OrderTransaction? order,
  6. int? status,
  7. String? phone,
  8. DateTime? createdAt,
})

Implementation

TransactionModel({
  this.id,
  this.type,
  this.displayId,
  this.amount,
  this.order,
  this.status,
  this.phone,
  this.createdAt,
});