copyWith method
Implementation
ShopifySharpLineItemAttributedStaff copyWith({String? id, int? quantity}) {
return ShopifySharpLineItemAttributedStaff(
id: id ?? this.id,
quantity: quantity ?? this.quantity,
);
}
ShopifySharpLineItemAttributedStaff copyWith({String? id, int? quantity}) {
return ShopifySharpLineItemAttributedStaff(
id: id ?? this.id,
quantity: quantity ?? this.quantity,
);
}