fileData method

List<int> fileData(
  1. int index
)

The decompressed data of the file at the given index.

Implementation

List<int> fileData(int index) {
  return _files[index].content as List<int>;
}