TrackerData constructor

const TrackerData({
  1. required Widget tooltip,
  2. required TrackerLevel level,
})

Creates a new TrackerData instance. requires two parameters: tooltip is the tooltip for the tracker. level is the tracker level.

This constructor initializes a new instance of TrackerData with the specified tooltip and tracker level.

Implementation

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