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<_i6.User>> listUsersInProject({
  required String cloudProjectId,
}) => caller.callServerEndpoint<List<_i6.User>>(
  'users',
  'listUsersInProject',
  {'cloudProjectId': cloudProjectId},
);