Tracker constructor

const Tracker({
  1. Key? key,
  2. required List<TrackerData> data,
})

Creates a new Tracker instance.

data is the data for the tracker, which is a list of TrackerData.

This constructor initializes a new instance of Tracker with the specified data.

Implementation

const Tracker({
  super.key,
  required this.data,
});