avoid_returning_null_for_future
Avoid returning null for Future.
Details
#NOTE: This rule is removed in Dart 3.3.0; it is no longer functional.
AVOID returning null for Future.
It is almost always wrong to return null
for a Future
. Most of the time the
developer simply forgot to put an async
keyword on the function.
Enable
#To enable the avoid_returning_null_for_future
rule,
add avoid_returning_null_for_future
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- avoid_returning_null_for_future
If you're instead using the YAML map syntax to configure linter rules,
add avoid_returning_null_for_future: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
avoid_returning_null_for_future: true
除非另有说明,文档之所提及适用于 Dart 3.7.1 版本,本页面最后更新时间: 2025-01-27。 查看文档源码 或者 报告页面问题。