Tag constructor

Tag({
  1. String? title,
  2. String? artist,
  3. String? genre,
  4. String? trackNumber,
  5. String? trackTotal,
  6. String? discNumber,
  7. String? discTotal,
  8. String? lyrics,
  9. String? comment,
  10. String? album,
  11. String? albumArtist,
  12. String? year,
  13. String? artwork,
})

Implementation

Tag({
  this.title,
  this.artist,
  this.genre,
  this.trackNumber,
  this.trackTotal,
  this.discNumber,
  this.discTotal,
  this.lyrics,
  this.comment,
  this.album,
  this.albumArtist,
  this.year,
  this.artwork,
});