SecureGate constructor

const SecureGate({
  1. Key? key,
  2. required Widget child,
  3. double blurr = 20,
  4. double opacity = 0.6,
  5. Widget lockedBuilder(
    1. BuildContext context,
    2. SecureApplicationController? secureApplicationController
    )?,
})

Implementation

const SecureGate({
  Key? key,
  required this.child,
  this.blurr = 20,
  this.opacity = 0.6,
  this.lockedBuilder,
}) : super(key: key);