getServices method

Future<XRPCResponse<LabelerGetServicesOutput>> getServices({
  1. required List<String> dids,
  2. bool? detailed,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get information about a list of labeler services.

Implementation

Future<XRPCResponse<LabelerGetServicesOutput>> getServices({
  required List<String> dids,
  bool? detailed,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyLabelerGetServices(
  dids: dids,
  detailed: detailed,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);