getMessages method
Implementation
Future<XRPCResponse<GetMessagesOutput>> getMessages({
required String convoId,
int? limit,
String? cursor,
Map<String, String>? $unknown,
Map<String, String>? $headers,
GetClient? $client,
}) async =>
await _ctx.get<GetMessagesOutput>(
ns.chatBskyConvoGetMessages,
headers: $headers,
parameters: {
'convoId': convoId,
if (limit != null) 'limit': limit.toString(),
if (cursor != null) 'cursor': cursor,
...?$unknown,
},
to: const GetMessagesOutputConverter().fromJson,
client: $client,
);