inlineQueryResultSticker property

InlineQueryResultSticker? inlineQueryResultSticker

Represents a sticker

Implementation

InlineQueryResultSticker? get inlineQueryResultSticker {
  if (this is InlineQueryResultSticker) {
    return this as InlineQueryResultSticker;
  }
  return null;
}