Music constructor

Music({
  1. String? label,
  2. ExternalMetadata? externalMetadata,
  3. String? acrid,
  4. Album? album,
  5. int? resultFrom,
  6. List<Artists>? artists,
  7. String? title,
  8. int? durationMs,
  9. String? releaseDate,
  10. int? score,
  11. int? playOffsetMs,
})

Implementation

Music(
    {this.label,
    this.externalMetadata,
    this.acrid,
    this.album,
    this.resultFrom,
    this.artists,
    this.title,
    this.durationMs,
    this.releaseDate,
    this.score,
    this.playOffsetMs});