copyWith method

FwStandardModulesAdministratorAlertConditionAlertConditionLogic copyWith({
  1. String? alertId,
  2. String? alertConditionId,
  3. String? fieldName1,
  4. String? condition,
  5. String? fieldName2,
  6. String? value,
  7. String? dateStamp,
  8. String? auditNote,
  9. String? recordTitle,
  10. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  11. List<FwStandardDataFwCustomValue>? custom,
  12. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  13. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

FwStandardModulesAdministratorAlertConditionAlertConditionLogic copyWith(
    {String? alertId,
    String? alertConditionId,
    String? fieldName1,
    String? condition,
    String? fieldName2,
    String? value,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return FwStandardModulesAdministratorAlertConditionAlertConditionLogic(
      alertId: alertId ?? this.alertId,
      alertConditionId: alertConditionId ?? this.alertConditionId,
      fieldName1: fieldName1 ?? this.fieldName1,
      condition: condition ?? this.condition,
      fieldName2: fieldName2 ?? this.fieldName2,
      value: value ?? this.value,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}