static bool validateDirExists(String path) { final directory = Directory(path); return directory.existsSync(); }