SimpleCandlestickData constructor

const SimpleCandlestickData({
  1. required String label,
  2. required double open,
  3. required double high,
  4. required double low,
  5. required double close,
  6. double? volume,
  7. Color? color,
})

Implementation

const SimpleCandlestickData({
  required this.label,
  required this.open,
  required this.high,
  required this.low,
  required this.close,
  this.volume,
  this.color,
});