getCameraAlpha method
Implementation
double getCameraAlpha() {
if (isHost() || isCoHost()) return 1.0;
if (!isVideoPermissionEnable) {
return isVideoPermissionGranted ? 1.0 : 0.5;
}
return 1.0;
}
double getCameraAlpha() {
if (isHost() || isCoHost()) return 1.0;
if (!isVideoPermissionEnable) {
return isVideoPermissionGranted ? 1.0 : 0.5;
}
return 1.0;
}