markThreadRead method

Future<EmptyResponse> markThreadRead(
  1. String channelId,
  2. String channelType,
  3. String threadId
)

Mark the thread with threadId in the channel with channelId of type channelType as read.

Implementation

Future<EmptyResponse> markThreadRead(
  String channelId,
  String channelType,
  String threadId,
) =>
    _chatApi.channel.markThreadRead(
      channelId,
      channelType,
      threadId,
    );