TokenBalanceData constructor

TokenBalanceData({
  1. String? id,
  2. String? name,
  3. String? tokenNameId,
  4. String? symbol,
  5. String type = 'Token',
  6. Map? currencyId,
  7. Map? src,
  8. String? minBalance,
  9. String? fullName,
  10. int? decimals,
  11. String? amount,
  12. String? locked,
  13. String? reserved,
  14. String? detailPageRoute,
  15. double? price,
  16. double? getPrice()?,
  17. String priceCurrency = 'USD',
  18. double priceRate = 1.0,
})

Implementation

TokenBalanceData(
    {this.id,
    this.name,
    this.tokenNameId,
    this.symbol,
    this.type = 'Token',
    this.currencyId,
    this.src,
    this.minBalance,
    this.fullName,
    this.decimals,
    this.amount,
    this.locked,
    this.reserved,
    this.detailPageRoute,
    this.price,
    this.getPrice,
    this.priceCurrency = 'USD',
    this.priceRate = 1.0});