Transactions constructor

Transactions({
  1. int? transactionId,
  2. int? amount,
  3. String? username,
  4. String? date,
  5. String? reason,
  6. String? vendor,
})

Implementation

Transactions(
    {this.transactionId,
    this.amount,
    this.username,
    this.date,
    this.reason,
    this.vendor});