getLog method
Implementation
Future<core.XRPCResponse<GetLogOutput>> getLog({
String? cursor,
}) async =>
await _ctx.get(
ns.chatBskyConvoGetLog,
parameters: {
'cursor': cursor,
},
to: GetLogOutput.fromJson,
);