1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Add initialization layer

This commit is contained in:
2020-04-17 15:25:26 +02:00
parent 6239c10579
commit 7549a9ff22
6 changed files with 134 additions and 4 deletions

View File

@ -0,0 +1,15 @@
/// 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;
}
}