hasSubscribers static method

bool hasSubscribers(
  1. String event
)

Check if an event has any subscribers.

Implementation

static bool hasSubscribers(String event) {
  return _manager.hasSubscribers(event);
}