ChartIndicator constructor

const ChartIndicator({
  1. Key? key,
  2. required double indicatorHeight,
  3. required double indicatorWidth,
  4. required Color color,
  5. required double value,
  6. required String label,
  7. bool isInteger = true,
})

Implementation

const ChartIndicator({
  super.key,
  required this.indicatorHeight,
  required this.indicatorWidth,
  required this.color,
  required this.value,
  required this.label,
  this.isInteger = true,
});