CreateNewStickerSet constructor

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

Creates a new sticker set. Returns the newly created sticker set

Implementation

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