copyWithWrapped method
FwStandardModulesAdministratorAlertAlertLogic
copyWithWrapped({
- Wrapped<
String?> ? alertId, - Wrapped<
String?> ? alertName, - Wrapped<
String?> ? moduleName, - Wrapped<
bool?> ? actionNew, - Wrapped<
bool?> ? actionEdit, - Wrapped<
bool?> ? actionDelete, - Wrapped<
String?> ? alertSubject, - Wrapped<
String?> ? alertBody, - Wrapped<
bool?> ? inactive, - Wrapped<
List< ? alertConditionList,FwStandardModulesAdministratorAlertAlertCondition> ?> - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
Implementation
FwStandardModulesAdministratorAlertAlertLogic copyWithWrapped(
{Wrapped<String?>? alertId,
Wrapped<String?>? alertName,
Wrapped<String?>? moduleName,
Wrapped<bool?>? actionNew,
Wrapped<bool?>? actionEdit,
Wrapped<bool?>? actionDelete,
Wrapped<String?>? alertSubject,
Wrapped<String?>? alertBody,
Wrapped<bool?>? inactive,
Wrapped<List<FwStandardModulesAdministratorAlertAlertCondition>?>?
alertConditionList,
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 FwStandardModulesAdministratorAlertAlertLogic(
alertId: (alertId != null ? alertId.value : this.alertId),
alertName: (alertName != null ? alertName.value : this.alertName),
moduleName: (moduleName != null ? moduleName.value : this.moduleName),
actionNew: (actionNew != null ? actionNew.value : this.actionNew),
actionEdit: (actionEdit != null ? actionEdit.value : this.actionEdit),
actionDelete:
(actionDelete != null ? actionDelete.value : this.actionDelete),
alertSubject:
(alertSubject != null ? alertSubject.value : this.alertSubject),
alertBody: (alertBody != null ? alertBody.value : this.alertBody),
inactive: (inactive != null ? inactive.value : this.inactive),
alertConditionList: (alertConditionList != null
? alertConditionList.value
: this.alertConditionList),
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));
}