scanQRCodeWithOptions method

Future<String?> scanQRCodeWithOptions({
  1. bool useFrontCamera = false,
  2. String orientation = 'portrait',
  3. bool enableTorch = false,
  4. bool enableAutoFocus = true,
  5. double zoomLevel = 0.0,
  6. bool enableZoom = true,
  7. double brightness = 0.5,
  8. double contrast = 0.5,
  9. double exposureCompensation = 0.0,
})

Inicia o scanner de QR code com configurações personalizadas (modo único).

Implementation

Future<String?> scanQRCodeWithOptions({
  bool useFrontCamera = false,
  String orientation = 'portrait',
  bool enableTorch = false,
  bool enableAutoFocus = true,
  double zoomLevel = 0.0,
  bool enableZoom = true,
  double brightness = 0.5,
  double contrast = 0.5,
  double exposureCompensation = 0.0,
}) {
  throw UnimplementedError(
    'scanQRCodeWithOptions() has not been implemented.',
  );
}