getLog method
Implementation
Future<XRPCResponse<GetLogOutput>> getLog({
String? cursor,
Map<String, String>? $unknown,
Map<String, String>? $headers,
GetClient? $client,
}) async =>
await _ctx.get<GetLogOutput>(
ns.chatBskyConvoGetLog,
headers: $headers,
parameters: {
if (cursor != null) 'cursor': cursor,
...?$unknown,
},
to: const GetLogOutputConverter().fromJson,
client: $client,
);