InlineQueryResultCachedPhoto constructor

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

Basic constructor

Implementation

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