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