listProjectsInfo method
Fetches the list of all projects. The result includes the owners for each project and the latest deploy attempt time (or null if undeployed).
Implementation
_i2.Future<List<_i4.ProjectInfo>> listProjectsInfo({
bool? includeArchived,
bool? includeLatestDeployAttemptTime,
}) => caller.callServerEndpoint<List<_i4.ProjectInfo>>(
'adminProjects',
'listProjectsInfo',
{
'includeArchived': includeArchived,
'includeLatestDeployAttemptTime': includeLatestDeployAttemptTime,
},
);