Group: style
Maturity: stable
Dart SDK: >= 2.13.0 • (Linter v1.0.0)
Since info is static, may be staleWhere possible, use already defined const values.
BAD:
const Duration(seconds: 0);
GOOD:
Duration.zero;
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