listProjectsInfo method

Future<List<ProjectInfo>> listProjectsInfo({
  1. bool? includeLatestDeployAttemptTime,
})

Fetches the list of projects the current user has access to. If requested, the result includes the latest deploy attempt time (or null if undeployed).

Implementation

_i2.Future<List<_i4.ProjectInfo>> listProjectsInfo({
  bool? includeLatestDeployAttemptTime,
}) => caller.callServerEndpoint<List<_i4.ProjectInfo>>(
  'projects',
  'listProjectsInfo',
  {'includeLatestDeployAttemptTime': includeLatestDeployAttemptTime},
);