Transaction constructor

Transaction({
  1. String? type,
  2. String? amount,
  3. String? currency,
  4. String? date,
  5. String? signedAmount,
  6. String? statusColor,
})

Implementation

Transaction(
    {this.type,
    this.amount,
    this.currency,
    this.date,
    this.signedAmount,
    this.statusColor});