updateChannels method

  1. @override
Future<void> updateChannels(
  1. List<ChannelModel> channels
)

Updates all the channels using the new channels data.

Implementation

@override
Future<void> updateChannels(List<ChannelModel> channels) {
  assert(_debugIsConnected, '');
  _logger.info('updateChannels');
  return db!.channelDao.updateChannels(channels);
}