MarketModel constructor

MarketModel(
  1. double? open,
  2. double? high,
  3. double? low,
  4. double? close,
  5. double? vol,
  6. int? id,
)

Implementation

MarketModel(this.open, this.high, this.low, this.close, this.vol, this.id);