sendEvent method

Future<EmptyResponse> sendEvent(
  1. Event event
)

Send an event on this channel.

Implementation

Future<EmptyResponse> sendEvent(Event event) {
  _checkInitialized();
  return _client.sendEvent(id!, type, event);
}