moveTo method
Implementation
St8Animation moveTo(double x, double y, {Duration? duration, Curve? curve}) {
animations.add(St8AnimationState(
x: x, y: y, duration: duration, positionCurve: curve));
return this;
}
St8Animation moveTo(double x, double y, {Duration? duration, Curve? curve}) {
animations.add(St8AnimationState(
x: x, y: y, duration: duration, positionCurve: curve));
return this;
}