fileTo method

File fileTo(
  1. List<String> name
)

Implementation

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