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 9bb544d commit 5718438Copy full SHA for 5718438
dwds/lib/src/utilities/sdk_configuration.dart
@@ -82,9 +82,17 @@ class SdkConfiguration {
82
final String? sdkSummaryPath;
83
final String? compilerWorkerPath;
84
85
+ @Deprecated('Only sound null safety is supported as of Dart 3.0')
86
+ final String? weakSdkSummaryPath;
87
+
88
89
+ final String? soundSdkSummaryPath;
90
91
const SdkConfiguration({
92
this.sdkDirectory,
93
this.sdkSummaryPath,
94
+ this.weakSdkSummaryPath,
95
+ this.soundSdkSummaryPath,
96
this.compilerWorkerPath,
97
});
98
0 commit comments