void addPath(Path path, Offset offset)

Adds a new subpath that consists of the given path offset by the given offset.

Source

void addPath(Path path, Offset offset) {
  assert(path != null); // path is checked on the engine side
  assert(_offsetIsValid(offset));
  _addPath(path, offset.dx, offset.dy);
}