InlineQueryResultMpeg4Gif constructor

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

Basic constructor

Implementation

InlineQueryResultMpeg4Gif({
  required this.id,
  required this.mpeg4Url,
  this.mpeg4Width,
  this.mpeg4Height,
  this.mpeg4Duration,
  required this.thumbUrl,
  this.thumbMimeType,
  this.title,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.replyMarkup,
  this.inputMessageContent,
});