CreateNewStickerSet constructor

const CreateNewStickerSet({
  1. required int userId,
  2. required String title,
  3. required String name,
  4. required bool isMasks,
  5. required List<InputSticker> stickers,
  6. 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.isMasks,
  required this.stickers,
  required this.source,
});