MarketChartData constructor

MarketChartData(
  1. DateTime date, {
  2. double? price,
  3. double? marketCap,
  4. double? totalVolume,
})

Implementation

MarketChartData(
  this.date, {
  this.price,
  this.marketCap,
  this.totalVolume,
});