Checks if a project with the given id already exists.
id
Future<bool> projectExists(String id) async { final projects = await listProjects(); return projects.contains(id); }