reset method

void reset()

Resets the starting and ending points and clears the offsets list, then notifies listeners.

Implementation

void reset() {
  _start = null;
  _end = null;
  offsets.clear();
  notifyListeners();
}