copyWithWrapped method

FwStandardModulesAdministratorAlertAlertLogic copyWithWrapped({
  1. Wrapped<String?>? alertId,
  2. Wrapped<String?>? alertName,
  3. Wrapped<String?>? moduleName,
  4. Wrapped<bool?>? actionNew,
  5. Wrapped<bool?>? actionEdit,
  6. Wrapped<bool?>? actionDelete,
  7. Wrapped<String?>? alertSubject,
  8. Wrapped<String?>? alertBody,
  9. Wrapped<bool?>? inactive,
  10. Wrapped<List<FwStandardModulesAdministratorAlertAlertCondition>?>? alertConditionList,
  11. Wrapped<String?>? dateStamp,
  12. Wrapped<String?>? auditNote,
  13. Wrapped<String?>? recordTitle,
  14. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  15. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  16. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  17. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

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));
}