Moves the element by (dx, dy) relative to its current location.
dx
dy
@override void translate(double dx, double dy) { _metrics.translate(dx, dy); for (final child in _children) { child.translate(dx, dy); } }