build method

Path build()

Implementation

Path build() {
  var path = Path();
  for (var command in commands) {
    command.applyTo(path);
  }
  return path;
}