InlineQueryResultGif constructor

InlineQueryResultGif({
  1. required String id,
  2. String type = InlineQueryResult.typeGif,
  3. required String gifUrl,
  4. int? gifWidth,
  5. int? gifHeight,
  6. int? gifDuration,
  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

InlineQueryResultGif({
  required this.id,
  this.type = InlineQueryResult.typeGif,
  required this.gifUrl,
  this.gifWidth,
  this.gifHeight,
  this.gifDuration,
  required this.thumbnailUrl,
  this.thumbnailMimeType,
  this.title,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.replyMarkup,
  this.inputMessageContent,
});