copyWithWrapped method
Implementation
ShopifySharpLineItemAttributedStaff copyWithWrapped({
Wrapped<String?>? id,
Wrapped<int?>? quantity,
}) {
return ShopifySharpLineItemAttributedStaff(
id: (id != null ? id.value : this.id),
quantity: (quantity != null ? quantity.value : this.quantity),
);
}