TransactionOverride constructor

TransactionOverride({
  1. String? dateTransacted,
  2. String? datePosted,
  3. double? amount,
  4. String? description,
  5. String? currency,
})

Implementation

TransactionOverride({
  this.dateTransacted,
  this.datePosted,
  this.amount,
  this.description,
  this.currency,
});