ZipEntry constructor

ZipEntry(
  1. String name,
  2. bool isDir,
  3. int size,
  4. int crc32,
)

Creates a new entry object.

Implementation

ZipEntry(this.name, this.isDir, this.size, this.crc32);