QueryErrorEvent constructor

const QueryErrorEvent({
  1. required String sql,
  2. required List parameters,
  3. String? model,
  4. String? operation,
  5. required Duration duration,
  6. required Object error,
  7. StackTrace? stackTrace,
})

Implementation

const QueryErrorEvent({
  required this.sql,
  required this.parameters,
  this.model,
  this.operation,
  required this.duration,
  required this.error,
  this.stackTrace,
});