GoogleCastMovieMediaMetadata constructor

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

Creates a movie media metadata instance.

Implementation

GoogleCastMovieMediaMetadata({
  this.title,
  this.subtitle,
  this.studio,
  super.images,
  this.releaseDate,
}) : super(
        metadataType: GoogleCastMediaMetadataType.movieMediaMetadata,
      );