subscribeRepos method

Future<XRPCResponse<Subscription<SubscribedRepo>>> subscribeRepos({
  1. int? cursor,
})

Implementation

Future<core.XRPCResponse<core.Subscription<SubscribedRepo>>> subscribeRepos({
  int? cursor,
}) async =>
    await _ctx.stream(
      ns.comAtprotoSyncSubscribeRepos,
      parameters: {
        'cursor': cursor,
      },
      to: SubscribedRepo.fromJson,
      adaptor: toSubscribedRepo,
    );