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