BiometryScannerWidget constructor

const BiometryScannerWidget({
  1. Key? key,
  2. required String phrase,
  3. required dynamic onCapture(
    1. File videoFile
    ),
  4. CameraController? testController,
})

Creates a new BiometryScannerWidget instance.

Implementation

const BiometryScannerWidget({
  super.key,
  required this.phrase,
  required this.onCapture,
  this.testController,
});