emitHookStarted method
Implementation
void emitHookStarted(String hookId, String hookName, String hookEvent) {
if (!_shouldEmit(hookEvent)) return;
_emit(
HookStartedEvent(
hookId: hookId,
hookName: hookName,
hookEvent: hookEvent,
),
);
}