isDone method

  1. @override
bool isDone(
  1. double time
)
override

Whether the simulation is "done" at the given time.

Implementation

@override
bool isDone(double time) =>
    (x(time) - _pixelSnapPosition).abs() <= tolerance.distance;