ArchiveFile.stream constructor Null safety
- String name,
- int size,
- InputStreamBase contentStream
Implementation
ArchiveFile.stream(this.name, this.size, InputStreamBase contentStream) {
// Paths can only have / path separators
name = name.replaceAll('\\', '/');
compress = true;
_content = contentStream;
//_rawContent = content_stream;
_compressionType = STORE;
}