TrackingProgression constructor

TrackingProgression({
  1. double? resolved,
  2. int? total,
})

Returns a new TrackingProgression instance.

Implementation

TrackingProgression({
  this.resolved,
  this.total,
});