ConnectionException constructor

const ConnectionException(
  1. String message, {
  2. String? code = 'P1000',
  3. Object? originalError,
  4. Map<String, dynamic>? context,
  5. String? host,
  6. int? port,
})

Implementation

const ConnectionException(
  super.message, {
  super.code = 'P1000',
  super.originalError,
  super.context,
  this.host,
  this.port,
});