copyWith method

FwStandardModulesAdministratorWebAlertLogWebAlertLogLogic copyWith({
  1. int? webAlertLogId,
  2. String? alertId,
  3. DateTime? createDateTime,
  4. String? alertSubject,
  5. String? alertBody,
  6. String? alertFrom,
  7. String? alertTo,
  8. String? status,
  9. String? errorMessage,
  10. String? dateStamp,
  11. String? auditNote,
  12. String? recordTitle,
  13. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  14. List<FwStandardDataFwCustomValue>? custom,
  15. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  16. 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);
}