QueryExecuted constructor
QueryExecuted({
- required String sql,
- required List<
Object?> bindings, - required double time,
- required OrmConnection connection,
- int? rowCount,
- Object? error,
- StackTrace? stackTrace,
- 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);