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.6.0。页面上次更新于 2024-07-03。 查看源代码 或 报告问题。