copyWith method

ServiceProductFulfillment copyWith({
  1. ServiceProductFulfillmentDetail? serviceproductfulfillmentdetail,
})

Implementation

ServiceProductFulfillment copyWith(
    {ServiceProductFulfillmentDetail? serviceproductfulfillmentdetail}) {
  return ServiceProductFulfillment(
      serviceproductfulfillmentdetail: serviceproductfulfillmentdetail ??
          this.serviceproductfulfillmentdetail);
}