SecureApplication constructor

const SecureApplication({
  1. Key? key,
  2. required Widget child,
  3. Future<SecureApplicationAuthenticationStatus?>? onNeedUnlock(
    1. SecureApplicationController? secureApplicationStateNotifier
    )?,
  4. SecureApplicationController? secureApplicationController,
  5. bool autoUnlockNative = true,
  6. VoidCallback? onAuthenticationFailed,
  7. VoidCallback? onAuthenticationSucceed,
  8. VoidCallback? onLogout,
  9. int nativeRemoveDelay = 1000,
})

Implementation

const SecureApplication({
  Key? key,
  required this.child,
  this.onNeedUnlock,
  this.secureApplicationController,
  this.autoUnlockNative = true,
  this.onAuthenticationFailed,
  this.onAuthenticationSucceed,
  this.onLogout,
  this.nativeRemoveDelay = 1000,
}) : super(key: key);