listMembers method
List all members with access to the ozone service.
https://atprotodart.com/docs/lexicons/tools/ozone/team/listMembers
Implementation
Future<XRPCResponse<ListMembersOutput>> listMembers({
int? limit,
String? cursor,
Map<String, String>? $unknown,
Map<String, String>? $headers,
GetClient? $client,
}) async =>
await _ctx.get<ListMembersOutput>(
ns.toolsOzoneTeamListMembers,
headers: $headers,
parameters: {
if (limit != null) 'limit': limit.toString(),
if (cursor != null) 'cursor': cursor,
...?$unknown,
},
to: const ListMembersOutputConverter().fromJson,
client: $client,
);