comAtprotoAdminSearchAccounts function
Get list of accounts that matches your search query.
Implementation
Future<XRPCResponse<AdminSearchAccountsOutput>> comAtprotoAdminSearchAccounts({
String? email,
String? cursor,
int? limit,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoAdminSearchAccounts,
headers: $headers,
parameters: {
...?$unknown,
if (email != null) 'email': email,
if (cursor != null) 'cursor': cursor,
if (limit != null) 'limit': limit,
},
to: const AdminSearchAccountsOutputConverter().fromJson,
);