ChannelFilterPipe<T> constructor

ChannelFilterPipe<T>({
  1. required Channel channel,
  2. bool filterEncoded = true,
  3. bool filterDecoded = true,
  4. bool allowAnyChannel = true,
})

Implementation

ChannelFilterPipe({
  required this.channel,
  this.filterEncoded = true,
  this.filterDecoded = true,
  this.allowAnyChannel = true,
});