InlineQueryResultCachedPhoto constructor

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

Constructs an InlineQueryResultCachedPhoto object

Implementation

const InlineQueryResultCachedPhoto({
  required this.photoFileId,
  required this.id,
  this.title,
  this.description,
  this.caption,
  this.parseMode,
  this.captionEntities,
  this.replyMarkup,
  this.inputMessageContent,
  this.showCaptionAboveMedia,
});