getCameraAlpha method

double getCameraAlpha()

Implementation

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