Dart API Referencedart:ioWebSocketException

WebSocketException class

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

Implements

IOException

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";