copyWith method

ReplaceStickerInSet copyWith({
  1. int? userId,
  2. String? name,
  3. InputFile? oldSticker,
  4. NewSticker? newSticker,
})

Implementation

ReplaceStickerInSet copyWith({
  int? userId,
  String? name,
  InputFile? oldSticker,
  NewSticker? newSticker,
}) => ReplaceStickerInSet(
  userId: userId ?? this.userId,
  name: name ?? this.name,
  oldSticker: oldSticker ?? this.oldSticker,
  newSticker: newSticker ?? this.newSticker,
);