prefer_expression_function_bodies
Use => for short members whose body is a single return statement.
This rule is available as of Dart 2.0.
This rule has a quick fix available.
Details
#CONSIDER using => for short members whose body is a single return statement.
BAD:
dart
get width {
return right - left;
}
BAD:
dart
bool ready(num time) {
return minTime == null || minTime <= time;
}
BAD:
dart
containsValue(String value) {
return getValues().contains(value);
}
GOOD:
dart
get width => right - left;
GOOD:
dart
bool ready(num time) => minTime == null || minTime <= time;
GOOD:
dart
containsValue(String value) => getValues().contains(value);
Usage
#To enable the prefer_expression_function_bodies
rule, add prefer_expression_function_bodies
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- prefer_expression_function_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.