MetadataV1Body constructor

const MetadataV1Body({
  1. String? title,
  2. String? artist,
  3. String? album,
  4. String? year,
  5. String? comment,
  6. int? track,
  7. int? genre,
})

Implementation

const MetadataV1Body(
    {this.title,
    this.artist,
    this.album,
    this.year,
    this.comment,
    this.track,
    this.genre});