SessionLogEntry constructor
      
      SessionLogEntry({})
     
    
    
Implementation
factory SessionLogEntry({
  int? id,
  required String serverId,
  required DateTime time,
  String? module,
  String? endpoint,
  String? method,
  double? duration,
  int? numQueries,
  bool? slow,
  String? error,
  String? stackTrace,
  int? authenticatedUserId,
  bool? isOpen,
  required DateTime touched,
}) = _SessionLogEntryImpl;