BeuiToken constructor

const BeuiToken({
  1. required String id,
  2. required String symbol,
  3. required String name,
  4. required String chainId,
  5. String? address,
  6. double? balance,
  7. double? usd,
  8. bool trending = false,
  9. bool popular = false,
})

Creates a token.

Implementation

const BeuiToken({
  required this.id,
  required this.symbol,
  required this.name,
  required this.chainId,
  this.address,
  this.balance,
  this.usd,
  this.trending = false,
  this.popular = false,
});