AssetInfoSchema constructor

const AssetInfoSchema({
  1. String? balance,
  2. required bool blacklisted,
  3. required bool community,
  4. required String contractAddress,
  5. required int decimals,
  6. required bool defaultSymbol,
  7. required bool deprecated,
  8. String? dexPriceUsd,
  9. String? dexUsdPrice,
  10. String? displayName,
  11. String? imageUrl,
  12. required AssetKindSchema kind,
  13. required int priority,
  14. required String symbol,
  15. required List<String> tags,
  16. required bool taxable,
  17. String? thirdPartyPriceUsd,
  18. String? thirdPartyUsdPrice,
  19. String? walletAddress,
})

Implementation

const AssetInfoSchema({
  this.balance,
  required this.blacklisted,
  required this.community,
  required this.contractAddress,
  required this.decimals,
  required this.defaultSymbol,
  required this.deprecated,
  this.dexPriceUsd,
  this.dexUsdPrice,
  this.displayName,
  this.imageUrl,
  required this.kind,
  required this.priority,
  required this.symbol,
  required this.tags,
  required this.taxable,
  this.thirdPartyPriceUsd,
  this.thirdPartyUsdPrice,
  this.walletAddress,
});