chatBskyModerationGetMessageContext function
Implementation
Future<XRPCResponse<ModerationGetMessageContextOutput>>
chatBskyModerationGetMessageContext({
String? convoId,
required String messageId,
int? before,
int? after,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.chatBskyModerationGetMessageContext,
headers: $headers,
parameters: {
...?$unknown,
if (convoId != null) 'convoId': convoId,
'messageId': messageId,
if (before != null) 'before': before,
if (after != null) 'after': after,
},
to: const ModerationGetMessageContextOutputConverter().fromJson,
);