cleanIfExists function
Implementation
void cleanIfExists(String path) => Directory(path).existsSync()
? Directory(path).deleteSync(recursive: true)
: null;
void cleanIfExists(String path) => Directory(path).existsSync()
? Directory(path).deleteSync(recursive: true)
: null;