GetStickers constructor

const GetStickers({
  1. required StickerType stickerType,
  2. required String query,
  3. required int limit,
  4. required int chatId,
})

Returns stickers from the installed sticker sets that correspond to any of the given emoji or can be found by sticker-specific keywords. If the query is non-empty, then favorite, recently used or trending stickers may also be returned

Implementation

const GetStickers({
  required this.stickerType,
  required this.query,
  required this.limit,
  required this.chatId,
});