listUsersInProject method

Future<List<User>> listUsersInProject({
  1. required String cloudProjectId,
})

Reads all users that have a role in the specified project.

Implementation

_i2.Future<List<_i4.User>> listUsersInProject(
        {required String cloudProjectId}) =>
    caller.callServerEndpoint<List<_i4.User>>(
      'users',
      'listUsersInProject',
      {'cloudProjectId': cloudProjectId},
    );