updateReactions method

  1. @override
Future<void> updateReactions(
  1. List<Reaction> reactions
)

Updates the reactions data with the new reactions data

Implementation

@override
Future<void> updateReactions(List<Reaction> reactions) {
  assert(_debugIsConnected, '');
  _logger.info('updateReactions');
  return db!.reactionDao.updateReactions(reactions);
}