post method

Asynchronously sends this request to the server.

The subscription is guaranteed to have been created on server when the resulting future completes.

Implementation

Future<EventSubscription<M>> post() {
    var topic = _client._requests.topic().withFilters(_type, filters: _filers);
    return _client._subscribeToEvents(topic);
}