copyWithWrapped method

ServiceProductFulfillment copyWithWrapped({
  1. Wrapped<ServiceProductFulfillmentDetail>? serviceproductfulfillmentdetail,
})

Implementation

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