fileSize method

int fileSize(
  1. int index
)

The decompressed size of the file at the given index.

Implementation

int fileSize(int index) {
  return _files[index].size;
}