copyWithWrapped method

FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic copyWithWrapped({
  1. Wrapped<int?>? webAuditId,
  2. Wrapped<String?>? moduleName,
  3. Wrapped<String?>? title,
  4. Wrapped<String?>? auditType,
  5. Wrapped<String?>? uniqueId1,
  6. Wrapped<String?>? uniqueId2,
  7. Wrapped<String?>? uniqueId3,
  8. Wrapped<String?>? webUserId,
  9. Wrapped<String?>? userId,
  10. Wrapped<String?>? userName,
  11. Wrapped<String?>? json,
  12. Wrapped<String?>? metaData1,
  13. Wrapped<String?>? metaData2,
  14. Wrapped<String?>? metaData3,
  15. Wrapped<String?>? dateStamp,
  16. Wrapped<String?>? auditNote,
  17. Wrapped<String?>? recordTitle,
  18. Wrapped? urlIdentifier,
  19. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  20. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  21. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  22. Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
  23. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
  24. Wrapped<bool?>? hasImport,
  25. Wrapped<bool?>? hasDocuments,
  26. Wrapped<String?>? createdByUserId,
  27. Wrapped<String?>? createdByUserName,
  28. Wrapped<String?>? createdDateTime,
  29. Wrapped<String?>? modifiedByUserId,
  30. Wrapped<String?>? modifiedByUserName,
  31. Wrapped<String?>? modifiedDateTime,
})

Implementation

FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic copyWithWrapped({
  Wrapped<int?>? webAuditId,
  Wrapped<String?>? moduleName,
  Wrapped<String?>? title,
  Wrapped<String?>? auditType,
  Wrapped<String?>? uniqueId1,
  Wrapped<String?>? uniqueId2,
  Wrapped<String?>? uniqueId3,
  Wrapped<String?>? webUserId,
  Wrapped<String?>? userId,
  Wrapped<String?>? userName,
  Wrapped<String?>? json,
  Wrapped<String?>? metaData1,
  Wrapped<String?>? metaData2,
  Wrapped<String?>? metaData3,
  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 FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic(
    webAuditId: (webAuditId != null ? webAuditId.value : this.webAuditId),
    moduleName: (moduleName != null ? moduleName.value : this.moduleName),
    title: (title != null ? title.value : this.title),
    auditType: (auditType != null ? auditType.value : this.auditType),
    uniqueId1: (uniqueId1 != null ? uniqueId1.value : this.uniqueId1),
    uniqueId2: (uniqueId2 != null ? uniqueId2.value : this.uniqueId2),
    uniqueId3: (uniqueId3 != null ? uniqueId3.value : this.uniqueId3),
    webUserId: (webUserId != null ? webUserId.value : this.webUserId),
    userId: (userId != null ? userId.value : this.userId),
    userName: (userName != null ? userName.value : this.userName),
    json: (json != null ? json.value : this.json),
    metaData1: (metaData1 != null ? metaData1.value : this.metaData1),
    metaData2: (metaData2 != null ? metaData2.value : this.metaData2),
    metaData3: (metaData3 != null ? metaData3.value : this.metaData3),
    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),
  );
}