isLocalVideoActive property

bool get isLocalVideoActive

Whether local video is active (has video AND not paused)

Use this in UI to determine video button state:

Icon(state.isLocalVideoActive ? Icons.videocam : Icons.videocam_off)

Implementation

bool get isLocalVideoActive => hasLocalVideo && !isLocalVideoPaused;