FileMetaData constructor

const FileMetaData({
  1. String? trackName,
  2. List<String>? trackArtistNames,
  3. String? albumName,
  4. String? albumArtistName,
  5. int? trackNumber,
  6. int? albumLength,
  7. int? year,
  8. String? genre,
  9. String? authorName,
  10. String? writerName,
  11. int? discNumber,
  12. String? mimeType,
  13. int? trackDuration,
  14. int? bitrate,
  15. Uint8List? albumArt,
  16. String? filePath,
})

Implementation

const FileMetaData({
  this.trackName,
  this.trackArtistNames,
  this.albumName,
  this.albumArtistName,
  this.trackNumber,
  this.albumLength,
  this.year,
  this.genre,
  this.authorName,
  this.writerName,
  this.discNumber,
  this.mimeType,
  this.trackDuration,
  this.bitrate,
  this.albumArt,
  this.filePath,
});