ZstdCodec constructor
ZstdCodec({})
Construct an ZstdCodec that is configured with the following parameters.
Default values are provided for unspecified parameters. Validation is performed which may result in throwing a RangeError or ArgumentError
Implementation
ZstdCodec(
{this.level = ZstdOption.defaultLevel,
this.inputBufferLength = CodecBufferHolder.autoLength,
this.outputBufferLength = CodecBufferHolder.autoLength}) {
validateZstdLevel(level);
}