copyWithWrapped method
      
ServiceProductFulfillment
copyWithWrapped({ 
    
    
- Wrapped<ServiceProductFulfillmentDetail> ? serviceproductfulfillmentdetail,
Implementation
ServiceProductFulfillment copyWithWrapped(
    {Wrapped<ServiceProductFulfillmentDetail>?
        serviceproductfulfillmentdetail}) {
  return ServiceProductFulfillment(
      serviceproductfulfillmentdetail:
          (serviceproductfulfillmentdetail != null
              ? serviceproductfulfillmentdetail.value
              : this.serviceproductfulfillmentdetail));
}