PathBuilder.fromPath constructor

PathBuilder.fromPath(
  1. Path path
)

Creates a new mutable path builder object from an existing Path.

Implementation

PathBuilder.fromPath(Path path) {
  addPath(path);
  fillType = path.fillType;
}