Candles constructor

Candles(
  1. List<double> close,
  2. List<double> high,
  3. List<double> low,
  4. List<double> open,
  5. String status,
  6. List<int> timestamps, {
  7. int? from,
  8. int? to,
  9. String? resolution,
})

Implementation

Candles(
    this.close, this.high, this.low, this.open, this.status, this.timestamps,
    {this.from, this.to, this.resolution});