moveBy method

void moveBy(
  1. Offset delta
)

Move the camera by an offset

Implementation

void moveBy(Offset delta) {
  position += delta;
}