createDir static method

void createDir(
  1. String path, {
  2. bool recursive = false,
})

Implementation

static void createDir(String path, {bool recursive = false}) {
  if (!dependency_manager.exists(path)) {
    dependency_manager.createDir(path, recursive: true);
  }
}