Market constructor

Market(
  1. double? open,
  2. double? high,
  3. double? low,
  4. double? close,
  5. double? vol,
  6. int? id, {
  7. bool? isShowCandleInfo,
})

Implementation

Market(this.open, this.high, this.low, this.close, this.vol, this.id,
    {this.isShowCandleInfo});