updateRead method
Implementation
Future<core.XRPCResponse<UpdateReadOutput>> updateRead({
required String convoId,
String? messageId,
}) async =>
await _ctx.post(
ns.chatBskyConvoUpdateRead,
body: {
'convoId': convoId,
'messageId': messageId,
},
to: UpdateReadOutput.fromJson,
);