You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if my function is : Future<void> _foo() async {
the linter will complain if I don't await _foo()
but if my function is: void _foo() async {
no complain.
I know I'm not "unawait a future" here but what I want is to await all async functions even if they return void over Future<void>