MediaMetadata constructor

MediaMetadata({
  1. String? creationTime,
  2. String? height,
  3. Photo? photo,
  4. Video? video,
  5. String? width,
})

Implementation

MediaMetadata({
  this.creationTime,
  this.height,
  this.photo,
  this.video,
  this.width,
});