LockScreen constructor

const LockScreen({
  1. Key? key,
  2. required double opacity,
  3. required ValueNotifier<bool> lockNotifier,
})

Implementation

const LockScreen({
  super.key,
  required this.opacity,
  required this.lockNotifier,
});