copyWith method

WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking copyWith({
  1. String? deliveryShipId,
  2. String? orderId,
  3. String? deliveryId,
  4. String? orderNumber,
  5. String? orderDate,
  6. String? orderDescription,
  7. String? status,
  8. String? statusDate,
  9. String? dealId,
  10. String? deal,
  11. String? dealNumber,
  12. String? trackingNumber,
  13. String? trackingNote,
  14. String? shippingVendorId,
  15. String? shippingVendor,
  16. String? carrierId,
  17. String? carrier,
  18. String? onlineOrderNumber,
  19. String? shipmentOrderNumber,
  20. String? dateStamp,
  21. String? auditNote,
  22. String? recordTitle,
  23. dynamic urlIdentifier,
  24. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  25. List<FwStandardDataFwCustomValue>? custom,
  26. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  27. FwStandardBusinessLogicFwBusinessLogic? original,
  28. List<FwStandardDataFwTranslatedValue>? translation,
  29. bool? hasImport,
  30. bool? hasDocuments,
  31. String? createdByUserId,
  32. String? createdByUserName,
  33. String? createdDateTime,
  34. String? modifiedByUserId,
  35. String? modifiedByUserName,
  36. String? modifiedDateTime,
})

Implementation

WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking copyWith({
  String? deliveryShipId,
  String? orderId,
  String? deliveryId,
  String? orderNumber,
  String? orderDate,
  String? orderDescription,
  String? status,
  String? statusDate,
  String? dealId,
  String? deal,
  String? dealNumber,
  String? trackingNumber,
  String? trackingNote,
  String? shippingVendorId,
  String? shippingVendor,
  String? carrierId,
  String? carrier,
  String? onlineOrderNumber,
  String? shipmentOrderNumber,
  String? dateStamp,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesUtilitiesOnlineOrderTrackingOnlineOrderTracking(
    deliveryShipId: deliveryShipId ?? this.deliveryShipId,
    orderId: orderId ?? this.orderId,
    deliveryId: deliveryId ?? this.deliveryId,
    orderNumber: orderNumber ?? this.orderNumber,
    orderDate: orderDate ?? this.orderDate,
    orderDescription: orderDescription ?? this.orderDescription,
    status: status ?? this.status,
    statusDate: statusDate ?? this.statusDate,
    dealId: dealId ?? this.dealId,
    deal: deal ?? this.deal,
    dealNumber: dealNumber ?? this.dealNumber,
    trackingNumber: trackingNumber ?? this.trackingNumber,
    trackingNote: trackingNote ?? this.trackingNote,
    shippingVendorId: shippingVendorId ?? this.shippingVendorId,
    shippingVendor: shippingVendor ?? this.shippingVendor,
    carrierId: carrierId ?? this.carrierId,
    carrier: carrier ?? this.carrier,
    onlineOrderNumber: onlineOrderNumber ?? this.onlineOrderNumber,
    shipmentOrderNumber: shipmentOrderNumber ?? this.shipmentOrderNumber,
    dateStamp: dateStamp ?? this.dateStamp,
    auditNote: auditNote ?? this.auditNote,
    recordTitle: recordTitle ?? this.recordTitle,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}