StickerSet constructor

StickerSet({
  1. required String name,
  2. required String title,
  3. required bool isAnimated,
  4. required bool containsMasks,
  5. required List<Sticker> stickers,
  6. PhotoSize? thumb,
})

Implementation

StickerSet({
  required this.name,
  required this.title,
  required this.isAnimated,
  required this.containsMasks,
  required this.stickers,
  this.thumb,
});