TrackerData constructor
const
TrackerData({
- required Widget tooltip,
- 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,
});