InputMediaPhoto constructor

const InputMediaPhoto({
  1. required bool spoiler,
  2. required bool livePhoto,
  3. required InputPhotoBase id,
  4. int? ttlSeconds,
  5. InputDocumentBase? video,
})

Input Media Photo constructor.

Implementation

const InputMediaPhoto({
  required this.spoiler,
  required this.livePhoto,
  required this.id,
  this.ttlSeconds,
  this.video,
}) : super._();