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