Future<bool> isProjectExist(String name) async { var path = Directory.current.path; return await Directory("$path/$name").exists(); }