add abstract method

  1. @override
void add(
  1. dynamic message
)
override

Sends a message over the WebSocket connection.

This accepts a variety of data types, depending on the platform. In the browser:

  • Blob
  • ByteBuffer
  • String
  • TypedData On the server:
  • String
  • List

Implementation

@override
void add(dynamic message);