getMatches method

Future<XRPCResponse<ContactGetMatchesOutput>> getMatches({
  1. int? limit,
  2. String? cursor,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Returns the matched contacts (contacts that were mutually imported). Excludes dismissed matches. Requires authentication.

Implementation

Future<XRPCResponse<ContactGetMatchesOutput>> getMatches({
  int? limit,
  String? cursor,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyContactGetMatches(
  limit: limit,
  cursor: cursor,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);