StickersCreateStickerSet constructor

const StickersCreateStickerSet({
  1. required bool masks,
  2. required bool emojis,
  3. required bool textColor,
  4. required InputUserBase userId,
  5. required String title,
  6. required String shortName,
  7. InputDocumentBase? thumb,
  8. required List<InputStickerSetItemBase> stickers,
  9. String? software,
})

Stickers Create Sticker Set constructor.

Implementation

const StickersCreateStickerSet({
  required this.masks,
  required this.emojis,
  required this.textColor,
  required this.userId,
  required this.title,
  required this.shortName,
  this.thumb,
  required this.stickers,
  this.software,
}) : super._();