CandlestickData constructor

const CandlestickData(
  1. DateTime time,
  2. double open,
  3. double high,
  4. double low,
  5. double close,
  6. double volume,
)

Implementation

const CandlestickData(
  this.time,
  this.open,
  this.high,
  this.low,
  this.close,
  this.volume,
);