updateChannelThreads method

  1. @override
Future<void> updateChannelThreads(
  1. String cid,
  2. Map<String, List<Message>> threads
)

Updates the channel cid threads data along with reactions and users.

Implementation

@override
Future<void> updateChannelThreads(
  String cid,
  Map<String, List<Message>> threads,
) {
  assert(_debugIsConnected, '');
  _logger.info('updateChannelThreads');
  return db!.transaction(() => super.updateChannelThreads(cid, threads));
}