withChannel method

void withChannel({
  1. required Channel channel,
  2. bool followLinks = false,
  3. bool recursive = false,
})

Implementation

void withChannel(
    {required Channel channel,
    bool followLinks: false,
    bool recursive: false}) {
  _channels.add(channel);
  _channelLinks.add(followLinks);
  _channelRecursive.add(recursive);
}