From 12351d44b2288c792377e2375f73f8846561c0de Mon Sep 17 00:00:00 2001 From: DHARAMPAL SINGH Date: Tue, 7 Jun 2022 21:54:46 +0530 Subject: [PATCH] Update socket_client.dart --- lib/resources/socket_client.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resources/socket_client.dart b/lib/resources/socket_client.dart index 7e40a54..6aed8a4 100644 --- a/lib/resources/socket_client.dart +++ b/lib/resources/socket_client.dart @@ -6,7 +6,7 @@ class SocketClient { static SocketClient? _instance; SocketClient._internal() { - socket = IO.io('https://tictaktoe-server.herokuapp.com/', { + socket = IO.io('https::3000 or YOUR HOSTED SERVER LINK', { 'transports': ['websocket'], 'autoConnect': false, });