TokenBalanceData constructor

TokenBalanceData({
  1. String? id,
  2. String? name,
  3. String? symbol,
  4. int? decimals,
  5. String? amount,
  6. String? locked,
  7. String? reserved,
  8. String? detailPageRoute,
  9. double? price,
})

Implementation

TokenBalanceData({
  this.id,
  this.name,
  this.symbol,
  this.decimals,
  this.amount,
  this.locked,
  this.reserved,
  this.detailPageRoute,
  this.price,
});