ConnectionTimeoutException constructor

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

Implementation

const ConnectionTimeoutException(
  super.message, {
  super.code = 'P1002',
  super.originalError,
  super.context,
  this.timeout,
});