unnecessary_late

Group: style

Maturity: stable

Dart SDK: >= 2.16.0 • (Linter v1.17.0)

Since info is static, may be stale
recommendedflutterhas-fix

View all Lint Rules

Using the Linter

DO not specify the late modifier for top-level and static variables when the declaration contains an initializer.

Top-level and static variables with initializers are already evaluated lazily as if they are marked late.

BAD:

late String badTopLevel = '';

GOOD:

String goodTopLevel = '';

BAD:

class BadExample {
  static late String badStatic = '';
}

GOOD:

class GoodExample {
  late String goodStatic;
}

Usage

To enable the unnecessary_late lint, add unnecessary_late under linter > rules in your analysis_options.yaml file:

linter:
  rules:
    - unnecessary_late