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