use_named_constants

Group: style

Maturity: stable

Dart SDK: >= 2.13.0 • (Linter v1.0.0)

Since info is static, may be stale

View all Lint Rules

Using the Linter

Where possible, use already defined const values.

BAD:

const Duration(seconds: 0);

GOOD:

Duration.zero;

Usage

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

linter:
  rules:
    - use_named_constants