markAsRead method

Future<void> markAsRead()

Sends mark as read to this channel.

Implementation

Future<void> markAsRead() async {
  sbLog.i(StackTrace.current);

  final cmd = Command.buildRead(channelUrl);
  await chat.commandManager.sendCommand(cmd);
}