copyWith method
Implementation
UploadStickerFile copyWith({
int? userId,
StickerFormat? stickerFormat,
InputFile? sticker,
}) =>
UploadStickerFile(
userId: userId ?? this.userId,
stickerFormat: stickerFormat ?? this.stickerFormat,
sticker: sticker ?? this.sticker,
);