stop method

void stop([
  1. bool reset = true
])

Implementation

void stop([bool reset = true]) {
  _animator?.stop(canceled: true);
  if (reset) {
    value = end;
  } else {
    notifyListeners();
  }
}