copyWithWrapped method

FwStandardModulesAdministratorWebAuditJsonWebAuditJsonLogic copyWithWrapped({
  1. Wrapped<int?>? webAuditId,
  2. Wrapped<String?>? moduleName,
  3. Wrapped<String?>? title,
  4. Wrapped<String?>? uniqueId1,
  5. Wrapped<String?>? uniqueId2,
  6. Wrapped<String?>? uniqueId3,
  7. Wrapped<String?>? webUserId,
  8. Wrapped<String?>? userName,
  9. Wrapped<String?>? json,
  10. Wrapped<String?>? dateStamp,
  11. Wrapped<String?>? auditNote,
  12. Wrapped<String?>? recordTitle,
  13. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  14. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  15. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  16. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

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