AssetQuote constructor

const AssetQuote({
  1. required String symbol,
  2. required String name,
  3. required Money price,
  4. required double changePercent,
  5. Money? change24h,
  6. String? logoUrl,
})

Implementation

const AssetQuote({
  required this.symbol,
  required this.name,
  required this.price,
  required this.changePercent,
  this.change24h,
  this.logoUrl,
});