CreateNewStickerSet constructor

CreateNewStickerSet({
  1. required int userId,
  2. required String title,
  3. required String name,
  4. StickerType? stickerType,
  5. required bool needsRepainting,
  6. required List<NewSticker> stickers,
  7. required String source,
})

Implementation

CreateNewStickerSet({
  required this.userId,
  required this.title,
  required this.name,
  this.stickerType,
  required this.needsRepainting,
  required this.stickers,
  required this.source,
});