InlineQueryResultMpeg4Gif constructor

InlineQueryResultMpeg4Gif({
  1. required String id,
  2. String type = InlineQueryResult.typeMpeg4Gif,
  3. required String mpeg4Url,
  4. int? mpeg4Width,
  5. int? mpeg4Height,
  6. int? mpeg4Duration,
  7. required String thumbnailUrl,
  8. String? thumbnailMimeType,
  9. String? title,
  10. String? caption,
  11. String? parseMode,
  12. List<MessageEntity>? captionEntities,
  13. InlineKeyboardMarkup? replyMarkup,
  14. InputMessageContent? inputMessageContent,
})

Implementation

InlineQueryResultMpeg4Gif({
  required this.id,
  this.type = InlineQueryResult.typeMpeg4Gif,
  required this.mpeg4Url,
  this.mpeg4Width,
  this.mpeg4Height,
  this.mpeg4Duration,
  required this.thumbnailUrl,
  this.thumbnailMimeType,
  this.title,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.replyMarkup,
  this.inputMessageContent,
});