scanFromFile method

Future<void> scanFromFile(
  1. XFile file
)

Scan a QR code from file. No-op if a scan is already in progress.

Implementation

Future<void> scanFromFile(XFile file) async {
  await _state?._processPickedFile(file);
}