1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-18 06:32:39 +00:00
comunicmobile/lib/helpers/websocket_helper.dart

16 lines
296 B
Dart

/// User web socket helper
///
/// @author Pierre Hubert
class WebSocketHelper {
/// Check out whether we are currently connected to websocket or not
static bool isConnected() {
return true;
}
/// Connect to WebSocket
static connect() async {
if (isConnected()) return;
}
}