From 21792b355c83ae0a47e5c92902ac30794b7de589 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Mon, 3 May 2021 16:21:48 +0200 Subject: [PATCH] remove final from _path in ws --- packages/stream_chat/lib/src/api/websocket.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stream_chat/lib/src/api/websocket.dart b/packages/stream_chat/lib/src/api/websocket.dart index 8b670f7f..b5bbbb69 100644 --- a/packages/stream_chat/lib/src/api/websocket.dart +++ b/packages/stream_chat/lib/src/api/websocket.dart @@ -113,7 +113,7 @@ class WebSocket { Stream get connectionStatusStream => _connectionStatusController.stream; - late final String _path; + late String _path; int _retryAttempt = 1; late WebSocketChannel _channel; Timer? _healthCheck, _reconnectionMonitor;