AssetInfoScreenerSchema constructor

const AssetInfoScreenerSchema({
  1. String? circulatingSupply,
  2. required String id,
  3. required String name,
  4. required String symbol,
  5. required String totalSupply,
})

Implementation

const AssetInfoScreenerSchema({
  this.circulatingSupply,
  required this.id,
  required this.name,
  required this.symbol,
  required this.totalSupply,
});