StickerSetInfo constructor

const StickerSetInfo({
  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 int size,
  13. required List<Sticker> covers,
})

Represents short information about a sticker set

Implementation

const StickerSetInfo({
  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.size,
  required this.covers,
});