BrotliDecoder constructor

BrotliDecoder({
  1. bool ringBufferReallocation = true,
  2. bool largeWindow = false,
  3. int inputBufferLength = CodecBufferHolder.autoLength,
  4. int outputBufferLength = CodecBufferHolder.autoLength,
})

Construct an BrotliDecoder with the supplied parameters.

Validation will be performed which may result in a RangeError or ArgumentError.

Implementation

BrotliDecoder(
    {this.ringBufferReallocation = true,
    this.largeWindow = false,
    this.inputBufferLength = CodecBufferHolder.autoLength,
    this.outputBufferLength = CodecBufferHolder.autoLength});