CandlesticksChart constructor

const CandlesticksChart({
  1. Key? key,
  2. Size chartSize = const Size(double.infinity, 300),
  3. int? minimumScale,
  4. int? maximumScale,
  5. required List<CandleModel> data,
  6. Color backgroundColor = const Color.fromARGB(255, 18, 32, 47),
})

Implementation

const CandlesticksChart(
    {Key? key,
    this.chartSize = const Size(double.infinity, 300),
    this.minimumScale,
    this.maximumScale,
    required this.data,
    this.backgroundColor = const Color.fromARGB(255, 18, 32, 47)})
    : super(key: key);