copyWith method

UploadStickerFile copyWith({
  1. int? userId,
  2. InputSticker? sticker,
})

Implementation

UploadStickerFile copyWith({
  int? userId,
  InputSticker? sticker,
}) => UploadStickerFile(
  userId: userId ?? this.userId,
  sticker: sticker ?? this.sticker,
);