InlineQueryResultCachedGif constructor

const InlineQueryResultCachedGif({
  1. required String gifFileId,
  2. required String id,
  3. String? title,
  4. String? caption,
  5. ParseMode? parseMode,
  6. List<MessageEntity>? captionEntities,
  7. InlineKeyboardMarkup? replyMarkup,
  8. InputMessageContent? inputMessageContent,
  9. bool? showCaptionAboveMedia,
})

Constructs an InlineQueryResultCachedGif object

Implementation

const InlineQueryResultCachedGif({
  required this.gifFileId,
  required this.id,
  this.title,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.replyMarkup,
  this.inputMessageContent,
  this.showCaptionAboveMedia,
});