appBskyLabelerGetServices function

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

Get information about a list of labeler services.

Implementation

Future<XRPCResponse<LabelerGetServicesOutput>> appBskyLabelerGetServices({
  required List<String> dids,
  bool? detailed,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyLabelerGetServices,
  headers: $headers,
  parameters: {
    ...?$unknown,
    'dids': dids,
    if (detailed != null) 'detailed': detailed,
  },
  to: const LabelerGetServicesOutputConverter().fromJson,
);