searchAccounts method
Get list of accounts that matches your search query.
Implementation
Future<XRPCResponse<AdminSearchAccountsOutput>> searchAccounts({
String? email,
String? cursor,
int? limit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoAdminSearchAccounts(
email: email,
cursor: cursor,
limit: limit,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);