p2pConnectState property
Implementation
ClientConnectState get p2pConnectState => _p2pConnectState;
Implementation
set p2pConnectState(ClientConnectState value) {
if (value != _p2pConnectState) {
_p2pConnectState = value;
notifyListeners<P2PConnectStateChanged>((P2PConnectStateChanged func) {
func(this, _p2pConnectState);
});
}
}