DartCodecFilterBase constructor

DartCodecFilterBase({
  1. int inputBufferLength = 16386,
  2. int outputBufferLength = 16386,
})

Constructor which allows the user to set the input/output buffer lengths.

Implementation

DartCodecFilterBase(
    {int inputBufferLength = 16386, int outputBufferLength = 16386})
    : super(
          inputBufferLength: inputBufferLength,
          outputBufferLength: outputBufferLength);