showCaptureButton property

bool? 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;
void showCaptureButton=(bool? val)

Implementation

set showCaptureButton(bool? val) {
  _showCaptureButton = val;
  _set({"showCaptureButton": val});
}