removeEventHandler method
removes this EventConsumer entry from the global list for the provided list of EventID list
Implementation
void removeEventHandler(List<EventID> list) {
Log.i(this, 'Removed for $list');
list.forEach((id) {
_consumerList[id]?.remove(this);
});
}