StsRealtimeProgressTracker constructor

StsRealtimeProgressTracker({
  1. double yThreshold = 1.0,
  2. double ySign = 1.0,
})

Creates a real-time progress tracker for the STS test.

yThreshold is the threshold for detecting movement. ySign is the sign correction for the y-axis.

Implementation

StsRealtimeProgressTracker({
  this.yThreshold = 1.0,
  this.ySign = 1.0,
});