entry method

ZipLocalFile entry(
  1. String path
)

Implementation

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