ConnectionStatus constructor

ConnectionStatus(
  1. String? message,
  2. String? errorCode,
  3. String? errorDetails, {
  4. required bool connected,
})

Implementation

ConnectionStatus(
  this.message,
  this.errorCode,
  this.errorDetails, {
  required this.connected,
});