updateRead method

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

Implementation

Future<XRPCResponse<ConvoUpdateReadOutput>> updateRead({
  required String convoId,
  String? messageId,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyConvoUpdateRead(
  convoId: convoId,
  messageId: messageId,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);