isLocalVideoMuted property

bool isLocalVideoMuted

Implementation

bool get isLocalVideoMuted {
  if (localUserMediaStream != null) {
    return localUserMediaStream!.isVideoMuted();
  }

  return true;
}