copy method
Implementation
SelectionElementModel copy({
String? id,
String? name,
int? index,
int? price,
}) {
return SelectionElementModel(
id: id ?? this.id,
name: name ?? this.name,
price: price ?? this.price,
);
}
SelectionElementModel copy({
String? id,
String? name,
int? index,
int? price,
}) {
return SelectionElementModel(
id: id ?? this.id,
name: name ?? this.name,
price: price ?? this.price,
);
}