LockScreen constructor

const LockScreen({
  1. Key? key,
  2. int length = 6,
  3. String pinType = 'authentication',
  4. VoidCallback? onUnlocked,
})

Implementation

const LockScreen({
  super.key,
  this.length = 6,
  this.pinType = 'authentication',
  this.onUnlocked,
});