StickerSet constructor

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

Represents a sticker set

Implementation

const StickerSet({
  required this.id,
  required this.title,
  required this.name,
  this.thumbnail,
  required this.thumbnailOutline,
  required this.isInstalled,
  required this.isArchived,
  required this.isOfficial,
  required this.stickerFormat,
  required this.stickerType,
  required this.isViewed,
  required this.stickers,
  required this.emojis,
  this.extra,
  this.clientId,
});