updateRead method

Future<XRPCResponse<UpdateReadOutput>> updateRead({
  1. required String convoId,
  2. String? messageId,
})

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