subscribeLabels method

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

Subscribe to stream of labels (and negations). Public endpoint implemented by mod services. Uses same sequencing scheme as repo event stream.

Implementation

Future<XRPCResponse<Subscription<Uint8List>>> subscribeLabels({
  int? cursor,
}) async => await comAtprotoLabelSubscribeLabels(cursor: cursor, $ctx: _ctx);