ZipFile class

Constructors

ZipFile([InputStreamBase? input, ZipFileHeader? header, String? password])

Properties

compressedSize int?
getter/setter pair
compressionMethod int
getter/setter pair
content List<int>
Get the decompressed content from the file. The file isn't decompressed until it is requested.
no setter
crc32 int?
getter/setter pair
extraField List<int>
getter/setter pair
filename String
getter/setter pair
flags int
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
getter/setter pair
lastModFileDate int
getter/setter pair
lastModFileTime int
getter/setter pair
rawContent → dynamic
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
signature int
getter/setter pair
uncompressedSize int?
getter/setter pair
version int
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override
verifyCrc32() bool
This will decompress the data (if necessary) in order to calculate the crc32 checksum for the decompressed data and verify it with the value stored in the zip.

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

deriveKey(String password, Uint8List salt, {int derivedKeyLength = 32}) Uint8List