subscribeLabels method
Implementation
Future<core.XRPCResponse<core.Subscription<SubscribedLabel>>>
subscribeLabels({
int? cursor,
}) async =>
await _ctx.stream(
ns.comAtprotoLabelSubscribeLabels,
parameters: {
'cursor': cursor,
},
to: SubscribedLabel.fromJson,
adaptor: toSubscribedLabel,
);