showCaptureButton property
bool?
get
showCaptureButton
If it's set to true
, the button that allows you to take a picture
and process it as a single frame will be displayed.
Default: false
.
Implementation
bool? get showCaptureButton => _showCaptureButton;
set
showCaptureButton
(bool? val)
Implementation
set showCaptureButton(bool? val) {
_showCaptureButton = val;
_set({"showCaptureButton": val});
}