getProjects method

Future<List<ProjectResponse>> getProjects()
inherited

Lists all projects accessible to the current user.

Returns a list of ProjectResponse objects containing project metadata and settings.

Implementation

Future<List<ProjectResponse>> getProjects() async {
  final request = GetProjectsRequest();
  final response = await stub.getProjects(request, options: callOptions);
  return response.projects;
}