ZstdEncoder constructor
ZstdEncoder({})
Construct an ZstdEncoder with the supplied parameters used by the Zstd encoder.
Validation will be performed which may result in a RangeError or ArgumentError.
Implementation
ZstdEncoder(
{this.level = ZstdOption.defaultLevel,
this.inputBufferLength = zstdEncoderInputBufferLength,
this.outputBufferLength = zstdEncoderOutputBufferLength}) {
validateZstdLevel(level);
}