fetchRolesForProject method

Future<List<Role>> fetchRolesForProject({
  1. required String cloudProjectId,
})

Fetches the user roles for a project.

Implementation

_i2.Future<List<_i35.Role>> fetchRolesForProject({
  required String cloudProjectId,
}) => caller.callServerEndpoint<List<_i35.Role>>(
  'roles',
  'fetchRolesForProject',
  {'cloudProjectId': cloudProjectId},
);