enable_null_safety
Do use sound null safety.
This rule has been removed as of the latest Dart releases.
Details
#NOTE: This rule is removed in Dart 3.0.0; it is no longer functional.
DO use sound null safety, by not specifying a dart version lower than 2.12
.
BAD:
dart
// @dart=2.8
a() {
}
GOOD:
dart
b() {
}
Usage
#To enable the enable_null_safety
rule, add enable_null_safety
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- enable_null_safety
Unless stated otherwise, the documentation on this site reflects Dart 3.5.4. Page last updated on 2024-07-03. View source or report an issue.