InlineQueryResultMpeg4Gif constructor

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

Constructs an InlineQueryResultMpeg4Gif object

Implementation

const InlineQueryResultMpeg4Gif({
  required this.mpeg4Url,
  required this.thumbnailUrl,
  required this.id,
  this.mpeg4Width,
  this.mpeg4Height,
  this.mpeg4Duration,
  this.thumbnailMimeType,
  this.title,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.replyMarkup,
  this.inputMessageContent,
  this.showCaptionAboveMedia,
});