Contents
Contents

Do use sound null safety.

This rule has been removed as of the latest Dart releases.

Details

#

NOTE: This rule is removed in Dart 2.12.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