listProjects method

Future<List<Project>> listProjects({
  1. bool? includeArchived,
})

Fetches the list of all projects. The result includes the owners for each project.

Implementation

_i2.Future<List<_i3.Project>> listProjects({bool? includeArchived}) =>
    caller.callServerEndpoint<List<_i3.Project>>(
      'adminProjects',
      'listProjects',
      {'includeArchived': includeArchived},
    );