translateOffset method

Bounds translateOffset(
  1. Offset offset
)

Translates the bounds by an Offset.

Implementation

Bounds translateOffset(Offset offset) {
  return translate(offset.dx, offset.dy);
}