QueryLogEntry constructor

QueryLogEntry({
  1. int? id,
  2. required String serverId,
  3. required int sessionLogId,
  4. int? messageId,
  5. required String query,
  6. required double duration,
  7. int? numRows,
  8. String? error,
  9. String? stackTrace,
  10. required bool slow,
  11. required int order,
})

Implementation

QueryLogEntry({
  int? id,
  required this.serverId,
  required this.sessionLogId,
  this.messageId,
  required this.query,
  required this.duration,
  this.numRows,
  this.error,
  this.stackTrace,
  required this.slow,
  required this.order,
}) : super(id);