CandleModel constructor

CandleModel({
  1. double? high,
  2. double? low,
  3. double? open,
  4. double? close,
  5. double volumeTo = 10,
})

Implementation

CandleModel({this.high, this.low, this.open, this.close, this.volumeTo = 10});