unregister method
Implementation
void unregister(String eventName, ITUINotificationCallback? callback) {
if (eventName != null && callback != null) {
var list = _messageQueue[eventName];
if (list != null) {
list.remove(callback);
}
}
}