copyWith method
Implementation
AddStickerToSet copyWith({
int? userId,
String? name,
InputSticker? sticker,
}) =>
AddStickerToSet(
userId: userId ?? this.userId,
name: name ?? this.name,
sticker: sticker ?? this.sticker,
);