subscribeLabels method

Future<XRPCResponse<Subscription<SubscribedLabel>>> subscribeLabels({
  1. int? cursor,
})

Implementation

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