subscribeEventSubscriptionResponseReceived method

void subscribeEventSubscriptionResponseReceived(
  1. dynamic callback(
    1. EventSubscriptionResponse
    )
)

Subscribes to all received EventSubscriptionResponse (EventSubscriptionResponseReceived-Event).

Implementation

void subscribeEventSubscriptionResponseReceived(
    Function(EventSubscriptionResponse) callback) {
  _callbacksForEventSubscriptionResponse.add(callback);
}