Peter Arrenbrecht
Peter Arrenbrecht
That was me. I also think that in many cases using `@Output` is actually overkill. If you know you'll never have have multiple listeners (for example in an app-specific component...
https://github.com/google/webdriver.dart/pull/281
> > > which doesn't work for async clients anyway > > > > > > Why doesn't it work for async clients? > > @parren-google - can you help...
> > > > which doesn't work for async clients anyway > > > > > > > > > Why doesn't it work for async clients? > > >...
For what it's worth, for `void Function` arguments, rewriting to `() {}` style is now more compact, and emphasizes that there is no return value. As in: ```dart final value...