getConvos method
Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.
Implementation
Future<XRPCResponse<ModerationGetConvosOutput>> getConvos({
required List<String> convoIds,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyModerationGetConvos(
convoIds: convoIds,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);