StickerSet constructor

const StickerSet({
  1. required String name,
  2. required String title,
  3. required StickerType stickerType,
  4. required List<Sticker> stickers,
  5. PhotoSize? thumbnail,
})

Constructs a StickerSet object

Implementation

const StickerSet({
  required this.name,
  required this.title,
  required this.stickerType,
  required this.stickers,
  this.thumbnail,
});