showCloseButton property
bool?
get
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;
set
showCloseButton
(bool? val)
Implementation
set showCloseButton(bool? val) {
_showCloseButton = val;
_set({"showCloseButton": val});
}