InputInlineQueryResultPhoto constructor

InputInlineQueryResultPhoto({
  1. required String id,
  2. required String title,
  3. required String description,
  4. required String thumbnailUrl,
  5. required String photoUrl,
  6. required int photoWidth,
  7. required int photoHeight,
  8. ReplyMarkup? replyMarkup,
  9. InputMessageContent? inputMessageContent,
})

Implementation

InputInlineQueryResultPhoto({
  required this.id,
  required this.title,
  required this.description,
  required this.thumbnailUrl,
  required this.photoUrl,
  required this.photoWidth,
  required this.photoHeight,
  this.replyMarkup,
  this.inputMessageContent,
});