We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0621cc + def3290 commit 79c80fcCopy full SHA for 79c80fc
packages/graphql/lib/src/links/websocket_link/websocket_client.dart
@@ -215,7 +215,8 @@ class SocketClient {
215
final SocketClientConfig config;
216
217
final BehaviorSubject<SocketConnectionState> _connectionStateController =
218
- BehaviorSubject<SocketConnectionState>();
+ BehaviorSubject<SocketConnectionState>.seeded(
219
+ SocketConnectionState.notConnected);
220
221
final HashMap<String, SubscriptionListener> _subscriptionInitializers =
222
HashMap();
packages/graphql_flutter/pubspec.yaml
@@ -15,7 +15,7 @@ dependencies:
15
meta: ^1.7.0
16
path_provider: ^2.0.1
17
path: ^1.8.0
18
- connectivity_plus: ^6.0.1
+ connectivity_plus: ^6.0.3
19
hive: ^2.0.0
20
plugin_platform_interface: ^2.0.0
21
flutter_hooks: '>=0.18.2 <0.21.0'
0 commit comments