copyWithWrapped method
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? 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
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),
);
}