SimpleBulletChartData constructor

const SimpleBulletChartData({
  1. required String label,
  2. required double value,
  3. required double target,
  4. double? minValue,
  5. double? maxValue,
  6. List<SimpleBulletRange> ranges = const [],
  7. Color? color,
  8. Color? targetColor,
})

Implementation

const SimpleBulletChartData({
  required this.label,
  required this.value,
  required this.target,
  this.minValue,
  this.maxValue,
  this.ranges = const [],
  this.color,
  this.targetColor,
});