const Tolerance({double distance: _kEpsilonDefault, double time: _kEpsilonDefault, double velocity: _kEpsilonDefault })

Creates a Tolerance object. By default, the distance, time, and velocity tolerances are all ±0.001; the constructor arguments override this.

The arguments should all be positive values.

Source

const Tolerance({
  this.distance: _kEpsilonDefault,
  this.time: _kEpsilonDefault,
  this.velocity: _kEpsilonDefault
});