setChannelFetchTime method
set a channel fetch time
Implementation
Future<void> setChannelFetchTime(String channel, int fetchTime) async {
await _database.insert(
tableChannelFetches,
{columnChannel: channel, columnFetchTime: fetchTime},
conflictAlgorithm: ConflictAlgorithm.replace,
);
}