findCorrelation method

Future<XRPCResponse<SignatureFindCorrelationOutput>> findCorrelation({
  1. required List<String> dids,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Find all correlated threat signatures between 2 or more accounts.

Implementation

Future<XRPCResponse<SignatureFindCorrelationOutput>> findCorrelation({
  required List<String> dids,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneSignatureFindCorrelation(
  dids: dids,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);