OutputStreamNode constructor

OutputStreamNode(
  1. StreamSink<TauFood> stream, {
  2. Pcm? codec,
})

Implementation

/* ctor */ OutputStreamNode(this.stream, {Pcm? codec}) {
  this.codec = (codec != null) ? codec : DefaultCodec();
}