InputInlineQueryResultSticker constructor

const InputInlineQueryResultSticker({
  1. required String id,
  2. required String thumbnailUrl,
  3. required String stickerUrl,
  4. required int stickerWidth,
  5. required int stickerHeight,
  6. ReplyMarkup? replyMarkup,
  7. required InputMessageContent inputMessageContent,
})

Represents a link to a WEBP, TGS, or WEBM sticker

Implementation

const InputInlineQueryResultSticker({
  required this.id,
  required this.thumbnailUrl,
  required this.stickerUrl,
  required this.stickerWidth,
  required this.stickerHeight,
  this.replyMarkup,
  required this.inputMessageContent,
});