Scandit constructor

const Scandit(
  1. {Key key,
  2. @required String licenseKey,
  3. @required void scanned(
    1. BarcodeResult
    ),
  4. void onScanditCreated(
    1. ScanditController
    ),
  5. void onError(
    1. BarcodeScanException
    ),
  6. List<Symbology> symbologies: defaultSymbologies}
)

Implementation

const Scandit({
  Key key,
  @required this.licenseKey,
  @required this.scanned,
  this.onScanditCreated,
  this.onError,
  this.symbologies = defaultSymbologies,
}) : super(key: key);