QueryTimeoutException constructor

const QueryTimeoutException(
  1. String message, {
  2. String? code = 'P2024',
  3. Object? originalError,
  4. Map<String, dynamic>? context,
  5. Duration? timeout,
  6. String? query,
})

Implementation

const QueryTimeoutException(
  super.message, {
  super.code = 'P2024',
  super.originalError,
  super.context,
  this.timeout,
  this.query,
});