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. dynamic urlIdentifier,
  14. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  15. List<FwStandardDataFwCustomValue>? custom,
  16. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  17. FwStandardBusinessLogicFwBusinessLogic? original,
  18. List<FwStandardDataFwTranslatedValue>? translation,
  19. bool? hasImport,
  20. bool? hasDocuments,
  21. String? createdByUserId,
  22. String? createdByUserName,
  23. String? createdDateTime,
  24. String? modifiedByUserId,
  25. String? modifiedByUserName,
  26. String? modifiedDateTime,
})

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,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}