Tagger class

The main class of the package, used to read an ID3 tag.

A tagger can read tags directly from bytes or from a file (given its path). It can work either synchronously with readTagSync, or asynchronously with readTag.

Constructors

Tagger(String path)
Create a Tagger the same way we would create a File: from its path.
Tagger.fromBytes(List<int> bytes)
Create a Tagger from raw bytes.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
readTag() Future<Tag?>
Reads asynchronously the ID3 tag.
readTagSync() Tag?
Reads synchronously the ID3 tag.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited