getConvos method

Future<XRPCResponse<ModerationGetConvosOutput>> getConvos({
  1. required List<String> convoIds,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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