showChangeFrameButton property

bool? showChangeFrameButton

If it's set to true, the button that allows you to change the camera frame type will be displayed.

Default: false.

Implementation

bool? get showChangeFrameButton => _showChangeFrameButton;
void showChangeFrameButton=(bool? val)

Implementation

set showChangeFrameButton(bool? val) {
  _showChangeFrameButton = val;
  _set({"showChangeFrameButton": val});
}