Album class

Constructors

Album({required String title, required List<Song> songs, required int albumTrackCount, required String artistName, required Uint8List? coverArt, required int discCount})

Properties

albumTrackCount int
The total tracks that the album has.
getter/setter pair
artistName String
The name of the artist of the album.
getter/setter pair
coverArt Uint8List?
The cover art as a UInt8List. This can be used with Image.memory() to convert to an image and display in the UI.
getter/setter pair
discCount int
The total disc number of the album.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
songs List<Song>
The songs of the album.
getter/setter pair
title String
The title of the album.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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