updateRead method

Future<XRPCResponse<ConvoUpdateReadOutput>> updateRead({
  1. required String convoId,
  2. String? messageId,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

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