animateTo method
Animates the counter to targetValue.
Implementation
void animateTo(num targetValue) {
_overrideDuration = null;
_value = targetValue;
notifyListeners();
}
Animates the counter to targetValue.
void animateTo(num targetValue) {
_overrideDuration = null;
_value = targetValue;
notifyListeners();
}