unlock method

void unlock()

Results in dismissing the lock screen overlay and making the app contents visible. Probably shouldn't be used manually, unless there's a really good reason to. It was intended to be used by the pin_lock package internally

Implementation

void unlock() {
  _streamController.add(const Unlocked());
}