getLog method

Future<XRPCResponse<GetLogOutput>> getLog({
  1. String? cursor,
  2. Map<String, String>? $unknown,
  3. Map<String, String>? $headers,
  4. GetClient? $client,
})

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,
    );