animateTo method
Animate toward target, preserving current velocity.
Implementation
void animateTo(Offset target) {
_x.animateTo(target.dx);
_y.animateTo(target.dy);
}
Animate toward target, preserving current velocity.
void animateTo(Offset target) {
_x.animateTo(target.dx);
_y.animateTo(target.dy);
}