copyWithWrapped method

WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking copyWithWrapped({
  1. Wrapped<String?>? deliveryShipId,
  2. Wrapped<String?>? orderId,
  3. Wrapped<String?>? deliveryId,
  4. Wrapped<String?>? orderNumber,
  5. Wrapped<String?>? orderDate,
  6. Wrapped<String?>? orderDescription,
  7. Wrapped<String?>? status,
  8. Wrapped<String?>? statusDate,
  9. Wrapped<String?>? dealId,
  10. Wrapped<String?>? deal,
  11. Wrapped<String?>? dealNumber,
  12. Wrapped<String?>? trackingNumber,
  13. Wrapped<String?>? shippingVendorId,
  14. Wrapped<String?>? shippingVendor,
  15. Wrapped<String?>? carrierId,
  16. Wrapped<String?>? carrier,
  17. Wrapped<String?>? onlineOrderNumber,
  18. Wrapped<String?>? dateStamp,
  19. Wrapped<String?>? auditNote,
  20. Wrapped<String?>? recordTitle,
  21. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  22. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  23. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  24. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking copyWithWrapped(
    {Wrapped<String?>? deliveryShipId,
    Wrapped<String?>? orderId,
    Wrapped<String?>? deliveryId,
    Wrapped<String?>? orderNumber,
    Wrapped<String?>? orderDate,
    Wrapped<String?>? orderDescription,
    Wrapped<String?>? status,
    Wrapped<String?>? statusDate,
    Wrapped<String?>? dealId,
    Wrapped<String?>? deal,
    Wrapped<String?>? dealNumber,
    Wrapped<String?>? trackingNumber,
    Wrapped<String?>? shippingVendorId,
    Wrapped<String?>? shippingVendor,
    Wrapped<String?>? carrierId,
    Wrapped<String?>? carrier,
    Wrapped<String?>? onlineOrderNumber,
    Wrapped<String?>? dateStamp,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking(
      deliveryShipId: (deliveryShipId != null
          ? deliveryShipId.value
          : this.deliveryShipId),
      orderId: (orderId != null ? orderId.value : this.orderId),
      deliveryId: (deliveryId != null ? deliveryId.value : this.deliveryId),
      orderNumber:
          (orderNumber != null ? orderNumber.value : this.orderNumber),
      orderDate: (orderDate != null ? orderDate.value : this.orderDate),
      orderDescription: (orderDescription != null
          ? orderDescription.value
          : this.orderDescription),
      status: (status != null ? status.value : this.status),
      statusDate: (statusDate != null ? statusDate.value : this.statusDate),
      dealId: (dealId != null ? dealId.value : this.dealId),
      deal: (deal != null ? deal.value : this.deal),
      dealNumber: (dealNumber != null ? dealNumber.value : this.dealNumber),
      trackingNumber: (trackingNumber != null
          ? trackingNumber.value
          : this.trackingNumber),
      shippingVendorId: (shippingVendorId != null
          ? shippingVendorId.value
          : this.shippingVendorId),
      shippingVendor: (shippingVendor != null
          ? shippingVendor.value
          : this.shippingVendor),
      carrierId: (carrierId != null ? carrierId.value : this.carrierId),
      carrier: (carrier != null ? carrier.value : this.carrier),
      onlineOrderNumber: (onlineOrderNumber != null
          ? onlineOrderNumber.value
          : this.onlineOrderNumber),
      dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes),
      translation:
          (translation != null ? translation.value : this.translation));
}