Metadata constructor

const Metadata({
  1. String? title,
  2. double? durationMs,
  3. String? artist,
  4. String? album,
  5. String? albumArtist,
  6. int? trackNumber,
  7. int? trackTotal,
  8. int? discNumber,
  9. int? discTotal,
  10. int? year,
  11. String? genre,
  12. Picture? picture,
  13. int? fileSize,
})

Implementation

const Metadata({
  this.title,
  this.durationMs,
  this.artist,
  this.album,
  this.albumArtist,
  this.trackNumber,
  this.trackTotal,
  this.discNumber,
  this.discTotal,
  this.year,
  this.genre,
  this.picture,
  this.fileSize,
});