createIfMissingSync method
Synchronously creates the directory if it does not exist.
Implementation
void createIfMissingSync({bool recursive = false}) {
if (!existsSync()) createSync(recursive: recursive);
}
Synchronously creates the directory if it does not exist.
void createIfMissingSync({bool recursive = false}) {
if (!existsSync()) createSync(recursive: recursive);
}