Deflate.buffer constructor Null safety
- InputStreamBase _input,
- {int? level = DEFAULT_COMPRESSION,
- int flush = FINISH,
- dynamic output}
Implementation
Deflate.buffer(this._input,
{int? level = DEFAULT_COMPRESSION, int flush = FINISH, dynamic output})
: _output = output ?? OutputStream() {
_init(level);
_deflate(flush);
}