GoogleCastMusicMediaMetadata constructor

GoogleCastMusicMediaMetadata({
  1. String? albumName,
  2. String? title,
  3. String? albumArtist,
  4. String? artist,
  5. String? composer,
  6. int? trackNumber,
  7. int? discNumber,
  8. List<GoogleCastImage>? images,
  9. DateTime? releaseDate,
})

Creates a music track media metadata instance.

Implementation

GoogleCastMusicMediaMetadata({
  this.albumName,
  this.title,
  this.albumArtist,
  this.artist,
  this.composer,
  this.trackNumber,
  this.discNumber,
  super.images,
  this.releaseDate,
}) : super(metadataType: GoogleCastMediaMetadataType.musicTrackMediaMetadata);