unregisterUpdateKey method
Implementation
void unregisterUpdateKey(NsgUpdateKey updateKey) {
var count = _registeredUpdateKeys[updateKey] ?? 0;
if (count > 0) {
count--;
if (count == 0) {
_registeredUpdateKeys.remove(updateKey);
} else {
_registeredUpdateKeys[updateKey] = count;
}
}
}