send method
Sends payload to the server under this topic with the given event name.
Implementation
Future<void> send(String event, dynamic payload) {
if (_disposed) throw StateError('Topic "$topic" has been disposed');
return _sender(topic, event, payload);
}