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