showCloseButton property

bool? showCloseButton

If it's set to true, the button that allows you to close the scanner will be displayed.

Default: true.

Implementation

bool? get showCloseButton => _showCloseButton;
void showCloseButton=(bool? val)

Implementation

set showCloseButton(bool? val) {
  _showCloseButton = val;
  _setFunctionality({"showCloseButton": val}, this);
}