AppLockScope constructor

const AppLockScope({
  1. Key? key,
  2. required Widget child,
  3. String lockTitle = 'Unlock',
  4. String biometricReason = 'Unlock app',
})

Implementation

const AppLockScope({
  super.key,
  required this.child,
  this.lockTitle = 'Unlock',
  this.biometricReason = 'Unlock app',
});