InputInlineQueryResultPhoto constructor

const 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. required InputMessageContent inputMessageContent}
)

Represents link to a JPEG image

Implementation

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