updateRead method
Implementation
Future<XRPCResponse<UpdateReadOutput>> updateRead({
required String convoId,
String? messageId,
Map<String, String>? $unknown,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _ctx.post<UpdateReadOutput>(
ns.chatBskyConvoUpdateRead,
headers: $headers,
body: {
'convoId': convoId,
if (messageId != null) 'messageId': messageId,
...?$unknown,
},
to: const UpdateReadOutputConverter().fromJson,
client: $client,
);