copyWith method
FwStandardModulesAdministratorWebAlertLogWebAlertLogLogic
copyWith({
- int? webAlertLogId,
- String? alertId,
- DateTime? createDateTime,
- String? alertSubject,
- String? alertBody,
- String? alertFrom,
- String? alertTo,
- String? status,
- String? errorMessage,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
FwStandardModulesAdministratorWebAlertLogWebAlertLogLogic copyWith(
{int? webAlertLogId,
String? alertId,
DateTime? createDateTime,
String? alertSubject,
String? alertBody,
String? alertFrom,
String? alertTo,
String? status,
String? errorMessage,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return FwStandardModulesAdministratorWebAlertLogWebAlertLogLogic(
webAlertLogId: webAlertLogId ?? this.webAlertLogId,
alertId: alertId ?? this.alertId,
createDateTime: createDateTime ?? this.createDateTime,
alertSubject: alertSubject ?? this.alertSubject,
alertBody: alertBody ?? this.alertBody,
alertFrom: alertFrom ?? this.alertFrom,
alertTo: alertTo ?? this.alertTo,
status: status ?? this.status,
errorMessage: errorMessage ?? this.errorMessage,
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);
}