From c6434306cf6563fa98cce742fa92d89c8b166fe7 Mon Sep 17 00:00:00 2001 From: Filip Prochazka Date: Mon, 15 Mar 2021 14:24:02 +0100 Subject: [PATCH] Fix missing this (described in #843) --- packages/graphql/lib/src/graphql_client.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/graphql/lib/src/graphql_client.dart b/packages/graphql/lib/src/graphql_client.dart index 236065fb9..278676bba 100644 --- a/packages/graphql/lib/src/graphql_client.dart +++ b/packages/graphql/lib/src/graphql_client.dart @@ -27,7 +27,7 @@ class GraphQLClient implements GraphQLDataProxy { DefaultPolicies? defaultPolicies, bool alwaysRebroadcast = false, }) { - defaultPolicies = defaultPolicies ?? DefaultPolicies(); + this.defaultPolicies = defaultPolicies ?? DefaultPolicies(); queryManager = QueryManager( link: link, cache: cache,