SessionLogEntry constructor

SessionLogEntry({
  1. int? id,
  2. required String serverId,
  3. required DateTime time,
  4. String? module,
  5. String? endpoint,
  6. String? method,
  7. double? duration,
  8. int? numQueries,
  9. bool? slow,
  10. String? error,
  11. String? stackTrace,
  12. int? authenticatedUserId,
  13. bool? isOpen,
  14. required DateTime touched,
})

Implementation

SessionLogEntry({
  int? id,
  required this.serverId,
  required this.time,
  this.module,
  this.endpoint,
  this.method,
  this.duration,
  this.numQueries,
  this.slow,
  this.error,
  this.stackTrace,
  this.authenticatedUserId,
  this.isOpen,
  required this.touched,
}) : super(id);