We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81aa2c1 commit 885c7d6Copy full SHA for 885c7d6
build_runner/lib/src/build/asset_graph/serialization.dart
@@ -53,7 +53,9 @@ AssetGraph? deserializeAssetGraph(List<int> bytes) {
53
as BuiltList<Digest>,
54
serializedGraph['dart_version'] as String,
55
packageLanguageVersions.build(),
56
- BuiltList<String>.from(serializedGraph['enabledExperiments'] as List),
+ BuiltList<String>.of(
57
+ (serializedGraph['enabledExperiments'] as List).cast(),
58
+ ),
59
);
60
61
graph.previousBuildTriggersDigest = _deserializeDigest(
0 commit comments