animateTo method
Animates the wheels to the given value.
Implementation
Future<void> animateTo(
List<int> value, {
Duration duration = const Duration(milliseconds: 300),
Curve curve = Curves.easeOutCubic,
}) async {
if (!listEquals(_rawValue, value)) {
_rawValue = value;
await _animateTo(value, duration, curve);
}
}