Removes a subscriber for the event type
@override void removeSubscriber(String type) { final count = _subscribers[type] ?? 0; if (count > 0) { _subscribers[type] = count - 1; } }