fileExists method
Implementation
bool fileExists(List<String> projectPath) {
final key = _keyForPath(projectPath);
final inMem = _findInMemory(key);
if(inMem != null) {
return true;
}
if(AFProjectPaths.projectFileExists(projectPath)) {
return true;
}
return false;
}