Dart API Referencedart:ioWebSocketException

WebSocketException class

class WebSocketException implements Exception {
  const WebSocketException([String this.message = ""]);
  String toString() => "WebSocketException: $message";
  final String message;
}

Implements

Exception

Constructors

const WebSocketException([String message = ""]) #

const WebSocketException([String this.message = ""]);

Properties

final String message #

final String message;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "WebSocketException: $message";