sort_constructors_first
Sort constructor declarations before other members.
This rule is available as of Dart 2.0.
This rule has a quick fix available.
Details
#DO sort constructor declarations before other members.
BAD:
dart
abstract class Visitor {
double value;
visitSomething(Something s);
Visitor();
}
GOOD:
dart
abstract class Animation<T> {
const Animation(this.value);
double value;
void addListener(VoidCallback listener);
}
Usage
#To enable the sort_constructors_first
rule, add sort_constructors_first
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- sort_constructors_first
Unless stated otherwise, the documentation on this site reflects Dart 3.5.4. Page last updated on 2024-07-03. View source or report an issue.