removeInnerClient method
Implementation
Future<void> removeInnerClient() async {
await _detachInnerClient();
await _innerClient?.dispose();
_innerClient = null;
_isConnected = false;
_connectionStateController.add(false);
}
Future<void> removeInnerClient() async {
await _detachInnerClient();
await _innerClient?.dispose();
_innerClient = null;
_isConnected = false;
_connectionStateController.add(false);
}