chatBskyConvoGetMessages function
Implementation
Future<XRPCResponse<ConvoGetMessagesOutput>> chatBskyConvoGetMessages({
required String convoId,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.chatBskyConvoGetMessages,
headers: $headers,
parameters: {
...?$unknown,
'convoId': convoId,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const ConvoGetMessagesOutputConverter().fromJson,
);