showChangeFrameButton property

  1. @Deprecated("Not used in new UI")
bool? get showChangeFrameButton

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

Default: false.

Implementation

@Deprecated("Not used in new UI")
bool? get showChangeFrameButton => _showChangeFrameButton;
set showChangeFrameButton (bool? val)

Implementation

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