Tracking constructor

Tracking({
  1. List<Checkpoint>? checkpoints = const [],
  2. TrackingProgression? progression,
  3. String? state,
  4. int? time,
})

Returns a new Tracking instance.

Implementation

Tracking({
  this.checkpoints = const [],
  this.progression,
  this.state,
  this.time,
});