TransferModel constructor

TransferModel({
  1. String? id,
  2. String? createdAt,
  3. String? amountCents,
  4. String? amountLocalized,
  5. Receiver? receiver,
})

Implementation

TransferModel({
  this.id,
  this.createdAt,
  this.amountCents,
  this.amountLocalized,
  this.receiver,
});