detachKey method

void detachKey(
  1. UniqueKey key
)

Implementation

void detachKey(UniqueKey key) {
  if (reserveKey == key) {
    reserveKey = null;
  }
  exitKey(key);
}