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