addPath method
Adds the commands of an existing path to the new path being created.
Implementation
PathBuilder addPath(Path other) {
_commands.addAll(other._commands);
return this;
}
Adds the commands of an existing path to the new path being created.
PathBuilder addPath(Path other) {
_commands.addAll(other._commands);
return this;
}