InputInlineQueryResultArticle constructor

const InputInlineQueryResultArticle({
  1. required String id,
  2. required String url,
  3. required bool hideUrl,
  4. required String title,
  5. required String description,
  6. required String thumbnailUrl,
  7. required int thumbnailWidth,
  8. required int thumbnailHeight,
  9. ReplyMarkup? replyMarkup,
  10. required InputMessageContent inputMessageContent,
})

Represents a link to an article or web page

Implementation

const InputInlineQueryResultArticle({
  required this.id,
  required this.url,
  required this.hideUrl,
  required this.title,
  required this.description,
  required this.thumbnailUrl,
  required this.thumbnailWidth,
  required this.thumbnailHeight,
  this.replyMarkup,
  required this.inputMessageContent,
});