isLocked static method

bool isLocked()

Checks if the app is currently locked.

This is used by the AppLockerNotifier for app security features.

Implementation

static bool isLocked() {
  return read<bool>('isLocked') ?? false;
}