empty_constructor_bodies
Use ;
instead of {}
for empty constructor bodies.
This rule is available as of Dart 2.0.
Rule sets: recommended, flutter
This rule has a quick fix available.
Details
#From Effective Dart:
DO use ;
instead of {}
for empty constructor bodies.
In Dart, a constructor with an empty body can be terminated with just a semicolon. This is required for const constructors. For consistency and brevity, other constructors should also do this.
BAD:
dart
class Point {
int x, y;
Point(this.x, this.y) {}
}
GOOD:
dart
class Point {
int x, y;
Point(this.x, this.y);
}
Usage
#To enable the empty_constructor_bodies
rule,
add empty_constructor_bodies
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- empty_constructor_bodies
除非另有说明,文档之所提及适用于 Dart 3.5.3 版本,本页面最后更新时间: 2024-08-02。 查看文档源码 或者 报告页面问题。