getLog method

Future<XRPCResponse<GetLogOutput>> getLog({
  1. String? cursor,
})

Implementation

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