ScannerController constructor

ScannerController({
  1. required dynamic scannerResult(
    1. String result
    ),
  2. dynamic scannerViewCreated,
})

Constructor.

Implementation

ScannerController({
  required scannerResult(String result),
  scannerViewCreated,
}) {
  _scannerResult = scannerResult;
  _scannerViewCreated = scannerViewCreated;
}