findRelatedAccounts method
Get accounts that share some matching threat signatures with the root account.
Implementation
Future<XRPCResponse<SignatureFindRelatedAccountsOutput>> findRelatedAccounts({
required String did,
String? cursor,
int? limit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneSignatureFindRelatedAccounts(
did: did,
cursor: cursor,
limit: limit,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);