showCameraSwitchButton property

bool? showCameraSwitchButton

If it's set to true, the button that allows you to change a position of a capture device for the video session will be displayed.

Default: false.

Implementation

bool? get showCameraSwitchButton => _showCameraSwitchButton;
void showCameraSwitchButton=(bool? val)

Implementation

set showCameraSwitchButton(bool? val) {
  _showCameraSwitchButton = val;
  _set({"showCameraSwitchButton": val});
}