addBytes method Null safety

void addBytes(
  1. List<int> bytes,
  2. {int flush = FINISH}
)

Add more data to be deflated.

Implementation

void addBytes(List<int> bytes, {int flush = FINISH}) {
  _input = InputStream(bytes);
  _deflate(flush);
}