CustomAppLock constructor

CustomAppLock({
  1. required Widget child,
  2. Widget? customAuthButton,
  3. String errorTitle = "App Lock",
  4. String lockedOutMessage = "Too many attemps has been made please try again after some time.",
  5. String errorMessage = "Some error has occurred",
  6. Key? key,
})

Implementation

CustomAppLock({
  required this.child,
  this.customAuthButton,
  this.errorTitle = "App Lock",
  this.lockedOutMessage =
      "Too many attemps has been made please try again after some time.",
  this.errorMessage = "Some error has occurred",
  super.key,
});