MessagePhoto constructor

MessagePhoto({
  1. Photo? photo,
  2. Video? video,
  3. FormattedText? caption,
  4. required bool showCaptionAboveMedia,
  5. required bool hasSpoiler,
  6. required bool isSecret,
})

Implementation

MessagePhoto({
  this.photo,
  this.video,
  this.caption,
  required this.showCaptionAboveMedia,
  required this.hasSpoiler,
  required this.isSecret,
});