AudioMetaData constructor

AudioMetaData({
  1. String? title,
  2. String? artist,
  3. String? albumTitle,
  4. String? albumArtist,
  5. String? genre,
  6. String? timeReleased,
  7. required Uint8List? thumbnail,
  8. String? copyRight,
})

Implementation

AudioMetaData(
    {this.title,
    this.artist,
    this.albumTitle,
    this.albumArtist,
    this.genre,
    this.timeReleased,
    required this.thumbnail,
    this.copyRight});