haveHandler<T> method
Checks if the bus contains a handler for the specified topic.
Implementation
@override
bool haveHandler<T>({String? path, String? target}) {
var t = Topic.create<T>(path: path, target: target);
var node = _eventsMap[t];
return node?.isHaveHandler??false;
}