listMembers method

Future<XRPCResponse<TeamListMembersOutput>> listMembers({
  1. String? q,
  2. bool? disabled,
  3. List<String>? roles,
  4. int? limit,
  5. String? cursor,
  6. Map<String, String>? $headers,
  7. Map<String, String>? $unknown,
})

List all members with access to the ozone service.

Implementation

Future<XRPCResponse<TeamListMembersOutput>> listMembers({
  String? q,
  bool? disabled,
  List<String>? roles,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneTeamListMembers(
  q: q,
  disabled: disabled,
  roles: roles,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);