QueryExecuted constructor

QueryExecuted({
  1. required String sql,
  2. required List<Object?> bindings,
  3. required double time,
  4. required OrmConnection connection,
  5. int? rowCount,
  6. Object? error,
  7. StackTrace? stackTrace,
  8. DateTime? timestamp,
})

Implementation

QueryExecuted({
  required this.sql,
  required this.bindings,
  required this.time,
  required OrmConnection connection,
  this.rowCount,
  this.error,
  this.stackTrace,
  super.timestamp,
}) : super(connection);