isActive method Null safety
inherited
Get if the current connection is active.
Returns true if connected, false if not.
Implementation
bool isActive() {
String? rtcPeerState = webRTCPeer.getRTCPeerStatus();
logger.i('Broadcast status: ${rtcPeerState.toString()}||not_established ');
return (rtcPeerState == 'connected');
}