StickerSet constructor

StickerSet({
  1. required int id,
  2. required String title,
  3. required String name,
  4. Thumbnail? thumbnail,
  5. Outline? thumbnailOutline,
  6. required bool isOwned,
  7. required bool isInstalled,
  8. required bool isArchived,
  9. required bool isOfficial,
  10. StickerType? stickerType,
  11. required bool needsRepainting,
  12. required bool isAllowedAsChatEmojiStatus,
  13. required bool isViewed,
  14. required List<Sticker> stickers,
  15. required List<Emojis> emojis,
})

Implementation

StickerSet({
  required this.id,
  required this.title,
  required this.name,
  this.thumbnail,
  this.thumbnailOutline,
  required this.isOwned,
  required this.isInstalled,
  required this.isArchived,
  required this.isOfficial,
  this.stickerType,
  required this.needsRepainting,
  required this.isAllowedAsChatEmojiStatus,
  required this.isViewed,
  required this.stickers,
  required this.emojis,
});