StickerSet constructor

StickerSet({
  1. required String software,
  2. required bool isAnimated,
  3. StickerData? thumbnail,
  4. required List<Sticker> stickers,
})

Creates new sticker set

Implementation

StickerSet({
  required this.software,
  required this.isAnimated,
  this.thumbnail,
  required this.stickers,
});