ensureDirectoryExists function

void ensureDirectoryExists(
  1. String dirPath
)

Implementation

void ensureDirectoryExists(String dirPath) {
  if (!Directory(dirPath).existsSync()) {
    Directory(dirPath).createSync(recursive: true);
  }
}