copyWith method

ShopifySharpLineItemAttributedStaff copyWith({
  1. String? id,
  2. int? quantity,
})

Implementation

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