We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe the warning below is wrong.
import 'dart:async'; void foo1() { return; } Null foo2() { return; } Future<void> foo3() async { return; // warning • Missing return value after 'return' at test.dart:12:3 • return_without_value } Future<Null> foo4() async { return; } void main() { }
The text was updated successfully, but these errors were encountered:
Duplicate of #32443.
Sorry, something went wrong.
No branches or pull requests
I believe the warning below is wrong.
The text was updated successfully, but these errors were encountered: