copyWith method
Implementation
Product copyWith({int? id, String? name, double? price, String? description}) {
return Product(
id: id ?? this.id,
name: name ?? this.name,
price: price ?? this.price,
description: description ?? this.description,
);
}