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,
  11. CandleSticksStyle? style,
  12. int? decimalDigits,
  13. required Color highLowTextColor,
})

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,
    this.style,
    this.decimalDigits,
    required this.highLowTextColor})
    : super(key: key);