GoogleCastPhotoMediaMetadata constructor

GoogleCastPhotoMediaMetadata({
  1. String? title,
  2. String? artist,
  3. String? location,
  4. double? latitude,
  5. double? longitude,
  6. int? width,
  7. int? height,
  8. DateTime? creationDateTime,
})

Creates a photo media metadata instance.

Implementation

GoogleCastPhotoMediaMetadata({
  this.title,
  this.artist,
  this.location,
  this.latitude,
  this.longitude,
  this.width,
  this.height,
  this.creationDateTime,
}) : super(metadataType: GoogleCastMediaMetadataType.photoMediaMetadata);