queryLabels method
Implementation
Future<core.XRPCResponse<LabelsByQuery>> queryLabels({
required List<String> uriPatterns,
List<String>? didSources,
int? limit,
String? cursor,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.comAtprotoLabelQueryLabels,
headers: headers,
parameters: {
'uriPatterns': uriPatterns,
'sources': didSources,
'limit': limit,
'cursor': cursor,
},
to: LabelsByQuery.fromJson,
);