内容

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