copyWith method
ReplaceStickerInSet
copyWith({
- int? userId,
- String? name,
- InputFile? oldSticker,
- 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,
);