Candlesticks constructor

Candlesticks({
  1. Key? key,
  2. required List<Candle> candles,
  3. Future<void> onLoadMoreCandles()?,
  4. List<ToolBarAction> actions = const [],
  5. CandleStyle? candleStyle,
  6. bool showToolbar = false,
  7. bool ma7 = true,
  8. bool ma25 = true,
  9. bool ma99 = true,
  10. String? watermark,
})

Implementation

Candlesticks({
  Key? key,
  required this.candles,
  this.onLoadMoreCandles,
  this.actions = const [],
  this.candleStyle,
  this.showToolbar = false,
  this.ma7 = true,
  this.ma25 = true,
  this.ma99 = true,
  this.watermark
}) : super(key: key);