missing_ return
Details about the 'missing_return' diagnostic produced by the Dart analyzer.
This function has a return type of '{0}', but doesn't end with a return statement.
Description
#
Any function or method that doesn't end with either an
explicit return or a throw implicitly returns
null. This is rarely the desired behavior. The
analyzer produces this diagnostic when it finds an implicit
return.
Example
#
The following code produces this diagnostic because
f doesn't end with a return:
int f(int x) {
if (x < 0) {
return 0;
}
}
Common fixes
#
Add a return statement that makes the return
value explicit, even if null is the appropriate
value.
除非另有说明,文档之所提及适用于 Dart 3.12.2 版本报告页面问题.