BalanceModel constructor

BalanceModel({
  1. String? transactionType,
  2. String? currency,
  3. String? amount,
  4. String? virtualValue,
  5. String? totalVirtualValue,
})

Implementation

BalanceModel(
    {this.transactionType,
    this.currency,
    this.amount,
    this.virtualValue,
    this.totalVirtualValue});