Tracker constructor
const
Tracker({
- Key? key,
- 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,
});