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