sort_constructors_first
将构造函数声明排序到其他成员之前。
此规则从 Dart 2.0 开始可用。
此规则提供了一个 快速修复。
详情
#请将构造函数声明排序到其他成员之前。
错误
dart
abstract class Visitor {
double value;
visitSomething(Something s);
Visitor();
}
正确
dart
abstract class Animation<T> {
const Animation(this.value);
double value;
void addListener(VoidCallback listener);
}
用法
#要启用 sort_constructors_first
规则,请在您的 analysis_options.yaml
文件中 linter > rules 下添加 sort_constructors_first
analysis_options.yaml
yaml
linter:
rules:
- sort_constructors_first
除非另有说明,否则本网站上的文档反映的是 Dart 3.5.3。页面上次更新于 2024-07-03。 查看源代码 或 报告问题。