register method
Register a hook matcher for an event.
Implementation
void register(HookEvent event, HookMatcher matcher) {
_hooks.putIfAbsent(event, () => []).add(matcher);
}
Register a hook matcher for an event.
void register(HookEvent event, HookMatcher matcher) {
_hooks.putIfAbsent(event, () => []).add(matcher);
}