subscriptionUnfilterEndpoint method

void subscriptionUnfilterEndpoint(
  1. EventSubscription subscription,
  2. String endpoint
)

Removes the special behavior endpoint from the subscription. If absent, while valid, nothing happens.

Implementation

void subscriptionUnfilterEndpoint(
    EventSubscription subscription, String endpoint) {
  subscription.unfilterEndpoint(endpoint);
}