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:
class Point {
int x, y;
Point(this.x, this.y) {}
}
GOOD:
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:
linter:
rules:
- empty_constructor_bodies
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.