copyWithWrapped method
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?> ? trackingNote, - Wrapped<
String?> ? shippingVendorId, - Wrapped<
String?> ? shippingVendor, - Wrapped<
String?> ? carrierId, - Wrapped<
String?> ? carrier, - Wrapped<
String?> ? onlineOrderNumber, - Wrapped<
String?> ? shipmentOrderNumber, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped? urlIdentifier,
- Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
FwStandardBusinessLogicFwBusinessLogic?> ? original, - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?> - Wrapped<
bool?> ? hasImport, - Wrapped<
bool?> ? hasDocuments, - Wrapped<
String?> ? createdByUserId, - Wrapped<
String?> ? createdByUserName, - Wrapped<
String?> ? createdDateTime, - Wrapped<
String?> ? modifiedByUserId, - Wrapped<
String?> ? modifiedByUserName, - Wrapped<
String?> ? modifiedDateTime,
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?>? trackingNote,
Wrapped<String?>? shippingVendorId,
Wrapped<String?>? shippingVendor,
Wrapped<String?>? carrierId,
Wrapped<String?>? carrier,
Wrapped<String?>? onlineOrderNumber,
Wrapped<String?>? shipmentOrderNumber,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<dynamic>? urlIdentifier,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
Wrapped<bool?>? hasImport,
Wrapped<bool?>? hasDocuments,
Wrapped<String?>? createdByUserId,
Wrapped<String?>? createdByUserName,
Wrapped<String?>? createdDateTime,
Wrapped<String?>? modifiedByUserId,
Wrapped<String?>? modifiedByUserName,
Wrapped<String?>? modifiedDateTime,
}) {
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),
trackingNote: (trackingNote != null
? trackingNote.value
: this.trackingNote),
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),
shipmentOrderNumber: (shipmentOrderNumber != null
? shipmentOrderNumber.value
: this.shipmentOrderNumber),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle: (recordTitle != null ? recordTitle.value : this.recordTitle),
urlIdentifier: (urlIdentifier != null
? urlIdentifier.value
: this.urlIdentifier),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
original: (original != null ? original.value : this.original),
translation: (translation != null ? translation.value : this.translation),
hasImport: (hasImport != null ? hasImport.value : this.hasImport),
hasDocuments: (hasDocuments != null
? hasDocuments.value
: this.hasDocuments),
createdByUserId: (createdByUserId != null
? createdByUserId.value
: this.createdByUserId),
createdByUserName: (createdByUserName != null
? createdByUserName.value
: this.createdByUserName),
createdDateTime: (createdDateTime != null
? createdDateTime.value
: this.createdDateTime),
modifiedByUserId: (modifiedByUserId != null
? modifiedByUserId.value
: this.modifiedByUserId),
modifiedByUserName: (modifiedByUserName != null
? modifiedByUserName.value
: this.modifiedByUserName),
modifiedDateTime: (modifiedDateTime != null
? modifiedDateTime.value
: this.modifiedDateTime),
);
}