Matthew McDonald
Matthew McDonald
I don't particularly care if `sync* [...]` is chosen as the exact syntax for iterable literals or not. The root problem here for me is that dart has a really...
> > But I didn't want to step on future tuple syntax: > > ```dart > > var wat = (1, 2, 3); // Lazy iterable of three elements, or...
Would this allow for `nullableFunction?(arg1, arg2)` instead of `nullableFunction?.call(arg1, arg2)` ?
This has potential to make nested conditional expressions much more legible. Take this code for example, which was formatted using `dart format`: ```dart String grade(int scoreInPercent) => scoreInPercent >= 90...
Related issue to this, on windows the keyboard shortcut for format is `Shift+Ctrl+F`.  But when you enter the command this pops up.  It appears that CodeMirror also uses...
This is likely irrelevant if the page is going to be rewritten to use `package:http`, but I noticed this page has an error in the code of one of the...
> As for adding the hyperlink hover buttons, I can definitely see that being useful, as we occasionally link to h4 headings as well within the docs. It seems this...
> Beat you by 3+ years, @srawlins - #117 😀 A non-growable list can still be mutable, so it is not quite the same request. I would definitely like to...
If we have both late parameters and non-constant default values, then I think you should allow late parameters to have default values also. This could allow you to for example...
Consider this example: ```dart void example(int a, String b, {required bool c}) {...} ``` How would the named parameter `c` be handled? Would it be included in the `List` somehow...