UploadStickerFile constructor

const UploadStickerFile({
  1. required int userId,
  2. required StickerFormat stickerFormat,
  3. required InputFile sticker,
})

Uploads a file with a sticker; returns the uploaded file

Implementation

const UploadStickerFile({
  required this.userId,
  required this.stickerFormat,
  required this.sticker,
});