SimpleFanChartPoint constructor

const SimpleFanChartPoint({
  1. required String label,
  2. required double value,
  3. List<SimpleFanChartBand> bands = const [],
  4. Color? color,
})

Implementation

const SimpleFanChartPoint({
  required this.label,
  required this.value,
  this.bands = const [],
  this.color,
});