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