deleteProject method
inherited
Forwards the legacy delete/deprecate request to the connected server.
New servers require hardDeleteProject for permanent deletion, while
older servers can continue to honor force: true.
Implementation
Future<StatusResponse> deleteProject(
String projectId, {
bool force = false,
}) async {
final request =
DeleteProjectRequest()
..projectId = projectId
..force = force;
return stub.deleteProject(request, options: callOptions);
}