copyWithWrapped method

WebApiModulesHomeOrderConfirmationOrderConfirmation copyWithWrapped({
  1. Wrapped<String?>? orderConfirmationId,
  2. Wrapped<String?>? orderId,
  3. Wrapped<String?>? webUsersId,
  4. Wrapped<String?>? date,
  5. Wrapped<String?>? time,
  6. Wrapped<String?>? activityType,
  7. Wrapped<String?>? note,
  8. Wrapped<String?>? person,
  9. Wrapped<String?>? payType,
  10. Wrapped<String?>? paymentTerms,
  11. Wrapped<String?>? purchaseOrderNumber,
  12. Wrapped<double?>? amount,
  13. Wrapped<String?>? auditNote,
  14. Wrapped<String?>? recordTitle,
  15. Wrapped? urlIdentifier,
  16. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  17. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  18. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  19. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  20. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  21. Wrapped<bool?>? hasImport,
  22. Wrapped<bool?>? hasDocuments,
  23. Wrapped<String?>? createdByUserId,
  24. Wrapped<String?>? createdByUserName,
  25. Wrapped<String?>? createdDateTime,
  26. Wrapped<String?>? modifiedByUserId,
  27. Wrapped<String?>? modifiedByUserName,
  28. Wrapped<String?>? modifiedDateTime,
})

Implementation

WebApiModulesHomeOrderConfirmationOrderConfirmation copyWithWrapped({
  Wrapped<String?>? orderConfirmationId,
  Wrapped<String?>? orderId,
  Wrapped<String?>? webUsersId,
  Wrapped<String?>? date,
  Wrapped<String?>? time,
  Wrapped<String?>? activityType,
  Wrapped<String?>? note,
  Wrapped<String?>? person,
  Wrapped<String?>? payType,
  Wrapped<String?>? paymentTerms,
  Wrapped<String?>? purchaseOrderNumber,
  Wrapped<double?>? amount,
  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 WebApiModulesHomeOrderConfirmationOrderConfirmation(
    orderConfirmationId: (orderConfirmationId != null
        ? orderConfirmationId.value
        : this.orderConfirmationId),
    orderId: (orderId != null ? orderId.value : this.orderId),
    webUsersId: (webUsersId != null ? webUsersId.value : this.webUsersId),
    date: (date != null ? date.value : this.date),
    time: (time != null ? time.value : this.time),
    activityType: (activityType != null
        ? activityType.value
        : this.activityType),
    note: (note != null ? note.value : this.note),
    person: (person != null ? person.value : this.person),
    payType: (payType != null ? payType.value : this.payType),
    paymentTerms: (paymentTerms != null
        ? paymentTerms.value
        : this.paymentTerms),
    purchaseOrderNumber: (purchaseOrderNumber != null
        ? purchaseOrderNumber.value
        : this.purchaseOrderNumber),
    amount: (amount != null ? amount.value : this.amount),
    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),
  );
}