TokenBalance constructor

TokenBalance({
  1. String? name,
  2. String? symbol,
  3. String? chainId,
  4. String? address,
  5. double? value,
  6. double? price,
  7. Quantity? quantity,
  8. String? iconUrl,
})

Implementation

TokenBalance({
  this.name,
  this.symbol,
  this.chainId,
  this.address,
  this.value,
  this.price,
  this.quantity,
  this.iconUrl,
});