copyWith method
ServiceProductFulfillment
copyWith({
- ServiceProductFulfillmentDetail? serviceproductfulfillmentdetail,
Implementation
ServiceProductFulfillment copyWith(
{ServiceProductFulfillmentDetail? serviceproductfulfillmentdetail}) {
return ServiceProductFulfillment(
serviceproductfulfillmentdetail: serviceproductfulfillmentdetail ??
this.serviceproductfulfillmentdetail);
}