updateRead method
Updates the read state of a conversation from, optionally specifying the last read message.
Implementation
Future<XRPCResponse<ConvoUpdateReadOutput>> updateRead({
required String convoId,
String? messageId,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyConvoUpdateRead(
convoId: convoId,
messageId: messageId,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);