We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7037df9 commit a46d301Copy full SHA for a46d301
packages/graphql/lib/src/links/websocket_link/websocket_client.dart
@@ -11,7 +11,6 @@ import 'package:meta/meta.dart';
11
import 'package:rxdart/rxdart.dart';
12
import 'package:stream_channel/stream_channel.dart';
13
import 'package:uuid/uuid.dart';
14
-import 'package:uuid/uuid_util.dart';
15
import 'package:web_socket_channel/status.dart' as ws_status;
16
import 'package:web_socket_channel/web_socket_channel.dart';
17
@@ -26,7 +25,7 @@ typedef WebSocketConnect = FutureOr<WebSocketChannel> Function(
26
25
);
27
28
// create uuid generator
29
-final _uuid = Uuid(options: {'grng': UuidUtil.cryptoRNG});
+final _uuid = Uuid();
30
31
class SubscriptionListener {
32
Function callback;
0 commit comments