getConvo method
Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.
Implementation
Future<XRPCResponse<ModerationGetConvoOutput>> getConvo({
required String convoId,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyModerationGetConvo(
convoId: convoId,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);