Tag constructor

Tag({
  1. Uint8List? artwork,
  2. String? artist,
  3. String? title,
  4. String? album,
  5. String? year,
  6. String? genre,
  7. String? language,
  8. String? composer,
  9. String? country,
  10. String? lyrics,
  11. String? quality,
})

Implementation

Tag({
  this.artwork,
  this.artist,
  this.title,
  this.album,
  this.year,
  this.genre,
  this.language,
  this.composer,
  this.country,
  this.lyrics,
  this.quality,
});