singleResult property

bool? singleResult

If it's set to true, once the scanning process is finished, the scanner will be dismissed.

Default: true.

iOS only.

Implementation

bool? get singleResult => _singleResult;
void singleResult=(bool? val)

Implementation

set singleResult(bool? val) {
  _singleResult = val;
  _set({"singleResult": val});
}