checkBarcodeBackground property

bool? get checkBarcodeBackground

This parameter is used to enable Barcode background check as part of the Liveness checks.

Implementation

bool? get checkBarcodeBackground => _checkBarcodeBackground;
set checkBarcodeBackground (bool? val)

Implementation

set checkBarcodeBackground(bool? val) {
  _checkBarcodeBackground = val;
  _set({"checkBarcodeBackground": val});
}