extendWithPath method
Adds the given path to this path by extending the current segment of this path with the the first segment of the given path.
Implementation
void extendWithPath(Path path, Offset offset) {
assert(path != null); // path is checked on the engine side
assert(_offsetIsValid(offset));
_extendWithPath(path, offset.dx, offset.dy);
}