getRelationships method
Enumerates public relationships between one account, and a list of other accounts. Does not require auth.
Implementation
Future<XRPCResponse<GraphGetRelationshipsOutput>> getRelationships({
required String actor,
List<String>? others,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetRelationships(
actor: actor,
others: others,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);