forceReconnect method
Implementation
Future<void> forceReconnect() async {
_log('Forcing reconnection');
await disconnect();
await Future.delayed(const Duration(milliseconds: 100));
await connect();
}
Future<void> forceReconnect() async {
_log('Forcing reconnection');
await disconnect();
await Future.delayed(const Duration(milliseconds: 100));
await connect();
}