hasSubscribers method

bool hasSubscribers(
  1. String event
)

Check if an event has any subscribers.

Implementation

bool hasSubscribers(String event) {
  return _adapter.hasSubscribers(event);
}