1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-03-22 13:40:45 +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;
}
}