StickerSet constructor

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

Implementation

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