getRelationships method

Future<XRPCResponse<Relationships>> getRelationships({
  1. required String actor,
  2. List<String>? others,
})

Implementation

Future<core.XRPCResponse<Relationships>> getRelationships({
  required String actor,
  List<String>? others,
}) async =>
    await _ctx.get(
      ns.appBskyGraphGetRelationships,
      parameters: {
        'actor': actor,
        'others': others,
      },
      to: Relationships.fromJson,
    );