readCompressed static method

Future<Tag> readCompressed(
  1. String file
)

Implementation

static Future<Tag> readCompressed(String file) async {
  _io = ByteLayer();
  await _io.readFromFile(file);
  await _io.decompress();
  _io.resetPosition();
  return Tag.readNamedTag(_io);
}