addPath method

PathBuilder addPath(
  1. Path other
)

Adds the commands of an existing path to the new path being created.

Implementation

PathBuilder addPath(Path other) {
  _commands.addAll(other._commands);
  return this;
}