ZipFileReaderSync class

Reads data from a Zip archive.

Constructors

ZipFileReaderSync()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

close() → void
Closes the reader. After closing no further read operations are allowed. You can however open the reader again using a new file.
entries() Iterable<ZipEntry>
Returns a list of all items contained in the Zip archive.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
open(File file) → void
Opens the specified Zip archive for read access.
read(String name) Uint8List
Reads the entry specified by name and returns the unpached data as a Uint8List.
readToFile(String name, File file) → void
Reads the entry specified by name and writes the unpacked data to file.
toString() String
A string representation of this object.
inherited

Operators

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