TrackerData constructor

const TrackerData({
  1. String? tooltip,
  2. required TrackerLevel level,
  3. double? value,
  4. String? label,
})

Implementation

const TrackerData({
  this.tooltip,
  required this.level,
  this.value,
  this.label,
});