Translates the bounds by an offset.
Bounds translate(double dx, double dy) { return Bounds( x: x + dx, y: y + dy, width: width, height: height, ); }