translated method
Translates this widget by offset. Animate if offset changes.
Implementation
Widget translated(
double x,
double y, [
Duration duration = const Duration(milliseconds: 300),
]) {
return AnimatedSlide(offset: Offset(x, y), duration: duration, child: this);
}