move method

Widget move({
  1. double x = 0,
  2. double y = 0,
})

Implementation

Widget move({double x = 0, double y = 0}) {
  return Transform.translate(
    offset: Offset(x, y),
    child: this,
  );
}