We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d174b51 commit 7e9c34bCopy full SHA for 7e9c34b
packages/graphql/lib/src/links/websocket_link/websocket_messages.dart
@@ -270,7 +270,7 @@ class SubscriptionData extends GraphQLSocketMessage {
270
int get hashCode => toJson().hashCode;
271
272
@override
273
- bool operator ==(dynamic other) =>
+ bool operator ==(Object other) =>
274
other is SubscriptionData && jsonEncode(other) == jsonEncode(this);
275
}
276
@@ -295,7 +295,7 @@ class SubscriptionNext extends GraphQLSocketMessage {
295
296
297
298
299
other is SubscriptionNext && jsonEncode(other) == jsonEncode(this);
300
301
0 commit comments