ScannerGuideSheet constructor

const ScannerGuideSheet({
  1. Key? key,
  2. required DraggableScrollableController controller,
  3. bool isProcessing = false,
  4. bool isSuccess = false,
  5. String? error,
  6. VoidCallback? onDismissError,
})

Implementation

const ScannerGuideSheet({
  super.key,
  required this.controller,
  this.isProcessing = false,
  this.isSuccess = false,
  this.error,
  this.onDismissError,
});