entry method
Implementation
ZipLocalFile entry(String path) {
ZipLocalFile? entry = entries[path];
if (entry == null) {
throw Exception("No file entry at path $path.");
}
return entry;
}
ZipLocalFile entry(String path) {
ZipLocalFile? entry = entries[path];
if (entry == null) {
throw Exception("No file entry at path $path.");
}
return entry;
}