LockScreen constructor

const LockScreen({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
  4. bool wrapInMaterialApp = true,
  5. String? semanticLabel,
})

Implementation

const LockScreen({
  super.key,
  required this.child,
  this.backgroundColor,
  this.wrapInMaterialApp = true,
  this.semanticLabel,
});