prefer_expression_function_bodies
Details about the 'prefer_expression_function_bodies' diagnostic produced by the Dart analyzer.
Unnecessary use of a block function body.
Description
#The analyzer produces this diagnostic when the body of a function consists of a single return statement with an expression.
Example
#
The following code produces this diagnostic because the body of f has a
single return statement:
int f() {
return 0;
}
Common fixes
#If the body is complete, then replace the body with an expression body:
int f() => 0;
If the body isn't complete, then add the missing statements.
除非另有说明,文档之所提及适用于 Dart 3.10.3 版本报告页面问题.