isVideoPermissionGranted property

bool get isVideoPermissionGranted

Returns whether the camera is allowed for the local participant in Workshop Mode.

Implementation

bool get isVideoPermissionGranted => _isVideoPermissionGranted;
set isVideoPermissionGranted (bool value)

Updates camera permission state for the local participant and notifies listeners to update UI.

Note: This is an app-level control, not a system permission request.

Implementation

set isVideoPermissionGranted(bool value) {
  _isVideoPermissionGranted = value;
  notifyListeners();
}