unlock static method

void unlock(
  1. String key
)

Implementation

static void unlock(String key) {
  if (_lockedKeys.contains(key)) {
    _lockedKeys.remove(key);
  }
}