ID3Tag class

Constructors

ID3Tag({required String tagVersion, required bool tagFound, required List<Frame> frames})

Properties

album String?
no setter
artist String?
no setter
chapters List<Chapter>
Gets the chapter (CHAP) frames, represented as Chapter objects. The returned chapters are sorted according to start time.
no setter
comment Comment?
Gets the first comment found in the tag
no setter
comments List<Comment>
no setter
duration Duration?
no setter
frameDictionaries List<Map<String, dynamic>>
no setter
frames List<Frame>
final
hashCode int
The hash code for this object.
no setterinherited
pictures List<Picture>
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tagFound bool
final
tagVersion String
final
title String?
no setter
track String?
no setter
trackNumber String?
no setter
trackTotal String?
no setter

Methods

framesWithName(String name) List<Frame>
Returns all frame matching the specified name
framesWithType<T extends Frame>() List<T>
Returns all frame matching the specified name and type
framesWithTypeAndName<T extends Frame>(String name) List<T>
Returns all frame matching the specified name and type
frameWithName(String name) Frame?
Returns the first frame with the specified name and type
frameWithTypeAndName<T extends Frame>(String name) → T?
Returns the first frame with the specified name and type
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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