unlock method

void unlock()

Unlocks the mutex.

Implementation

void unlock() {
  _isLocked = false;
}