dirTo method

Directory dirTo(
  1. List<String> name
)

Implementation

Directory dirTo(List<String> name) {
  return Directory(
    path.joinAll([this.path, ...name]),
  );
}