NiceBulletChart constructor

const NiceBulletChart({
  1. Key? key,
  2. required double actual,
  3. double? target,
  4. List<NiceBulletRange>? ranges,
  5. double? maxValue,
  6. String? label,
  7. double height = 30,
  8. Color? actualColor,
})

Implementation

const NiceBulletChart({
  super.key,
  required this.actual,
  this.target,
  this.ranges,
  this.maxValue,
  this.label,
  this.height = 30,
  this.actualColor,
});