showCameraSwitchButton property
bool?
get
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;
set
showCameraSwitchButton
(bool? val)
Implementation
set showCameraSwitchButton(bool? val) {
_showCameraSwitchButton = val;
_set({"showCameraSwitchButton": val});
}