markAsReadAll static method

Future<void> markAsReadAll()

Sends mark as read to all joined GroupChannels. This method has rate limit. You can send one request per second.

Implementation

static Future<void> markAsReadAll() async {
  sbLog.i(StackTrace.current);
  await _instance._chat.markAsReadAll();
}