Tagger constructor

Tagger(
  1. String path
)

Create a Tagger the same way we would create a File: from its path.

The content of the file is read only when a reading method (either readTag or readTagSync) is called.

Implementation

Tagger(String path) : _filePath = path;