createProjectFolder static method

void createProjectFolder(
  1. List<String> projectPath
)

Implementation

static void createProjectFolder(List<String> projectPath) {
  final path = fullPathFor(projectPath);
  Directory(path).createSync(recursive: true);
}