SimpleBulletRange constructor

const SimpleBulletRange({
  1. required double from,
  2. required double to,
  3. Color? color,
  4. String? label,
})

Implementation

const SimpleBulletRange({
  required this.from,
  required this.to,
  this.color,
  this.label,
});