InlineQueryResultVideo constructor

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

Implementation

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