InlineQueryResultVideo constructor

const InlineQueryResultVideo({
  1. required String videoUrl,
  2. required String mimeType,
  3. required String thumbnailUrl,
  4. required String title,
  5. required String id,
  6. String? caption,
  7. ParseMode? parseMode,
  8. List<MessageEntity>? captionEntities,
  9. int? videoWidth,
  10. int? videoHeight,
  11. int? videoDuration,
  12. String? description,
  13. InlineKeyboardMarkup? replyMarkup,
  14. InputMessageContent? inputMessageContent,
  15. bool? showCaptionAboveMedia,
})

Constructs an InlineQueryResultVideo object

Implementation

const InlineQueryResultVideo({
  required this.videoUrl,
  required this.mimeType,
  required this.thumbnailUrl,
  required this.title,
  required this.id,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.videoWidth,
  this.videoHeight,
  this.videoDuration,
  this.description,
  this.replyMarkup,
  this.inputMessageContent,
  this.showCaptionAboveMedia,
});