copyWith method

FwStandardModulesAdministratorWebEventLogWebEventLogLogic copyWith({
  1. int? id,
  2. String? serverName,
  3. String? webUsersId,
  4. String? userId,
  5. String? userName,
  6. String? logType,
  7. String? message,
  8. String? data,
  9. int? totalMemoryUsageBytes,
  10. String? totalMemoryUsageKiloBytes,
  11. String? totalMemoryUsageMegaBytes,
  12. String? totalMemoryUsageGigaBytes,
  13. String? dateStamp,
  14. String? auditNote,
  15. String? recordTitle,
  16. dynamic urlIdentifier,
  17. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  18. List<FwStandardDataFwCustomValue>? custom,
  19. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  20. FwStandardBusinessLogicFwBusinessLogic? original,
  21. List<FwStandardDataFwTranslatedValue>? translation,
  22. bool? hasImport,
  23. String? createdByUserId,
  24. String? createdByUserName,
  25. String? createdDateTime,
  26. String? modifiedByUserId,
  27. String? modifiedByUserName,
  28. String? modifiedDateTime,
})

Implementation

FwStandardModulesAdministratorWebEventLogWebEventLogLogic copyWith({
  int? id,
  String? serverName,
  String? webUsersId,
  String? userId,
  String? userName,
  String? logType,
  String? message,
  String? data,
  int? totalMemoryUsageBytes,
  String? totalMemoryUsageKiloBytes,
  String? totalMemoryUsageMegaBytes,
  String? totalMemoryUsageGigaBytes,
  String? dateStamp,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return FwStandardModulesAdministratorWebEventLogWebEventLogLogic(
    id: id ?? this.id,
    serverName: serverName ?? this.serverName,
    webUsersId: webUsersId ?? this.webUsersId,
    userId: userId ?? this.userId,
    userName: userName ?? this.userName,
    logType: logType ?? this.logType,
    message: message ?? this.message,
    data: data ?? this.data,
    totalMemoryUsageBytes:
        totalMemoryUsageBytes ?? this.totalMemoryUsageBytes,
    totalMemoryUsageKiloBytes:
        totalMemoryUsageKiloBytes ?? this.totalMemoryUsageKiloBytes,
    totalMemoryUsageMegaBytes:
        totalMemoryUsageMegaBytes ?? this.totalMemoryUsageMegaBytes,
    totalMemoryUsageGigaBytes:
        totalMemoryUsageGigaBytes ?? this.totalMemoryUsageGigaBytes,
    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,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}