prefer_const_declarations
Prefer const
over final
for declarations.
Details
#PREFER using const
for constant-valued declarations.
Constant declarations are more hot-reload friendly and allow values to be used in other constant expressions.
BAD:
dart
final o = const <int>[];
class A {
static final o = const <int>[];
}
GOOD:
dart
const o = <int>[];
class A {
static const o = <int>[];
}
Enable
#To enable the prefer_const_declarations
rule, add prefer_const_declarations
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- prefer_const_declarations
If you're instead using the YAML map syntax to configure linter rules, add prefer_const_declarations: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
prefer_const_declarations: true
Was this page's content helpful?
Thank you for your feedback!
Provide details Thank you for your feedback! Please let us know what we can do to improve.
Provide details Unless stated otherwise, the documentation on this site reflects Dart 3.8.1. Page last updated on 2025-03-07. View source or report an issue.