appBskyLabelerGetServices function
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,
);