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
I just read the style guide and wondered if it would a good idea to mention that shorthand function syntax should not be used for functions with return type void
bad
set someProp(String value) => _someProp = value
void foo() => doSomething();