PgPoolEvent constructor

PgPoolEvent({
  1. required int connectionId,
  2. String? sessionId,
  3. String? traceId,
  4. required String action,
  5. String? query,
  6. Map<String, dynamic>? substitutionValues,
  7. Duration? elapsed,
  8. dynamic error,
  9. StackTrace? stackTrace,
})

Implementation

PgPoolEvent({
  required this.connectionId,
  this.sessionId,
  this.traceId,
  required this.action,
  this.query,
  this.substitutionValues,
  this.elapsed,
  this.error,
  this.stackTrace,
});