GoogleCastGenericMediaMetadata constructor

GoogleCastGenericMediaMetadata({
  1. String? title,
  2. String? subtitle,
  3. List<GoogleCastImage>? images,
  4. DateTime? releaseDate,
})

Creates a generic media metadata instance.

Implementation

GoogleCastGenericMediaMetadata({
  this.title,
  this.subtitle,
  super.images,
  this.releaseDate,
}) : super(metadataType: GoogleCastMediaMetadataType.genericMediaMetadata);