-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
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
pls add syntactic sugars of List and Map #555
Comments
Not sure what is meant by this, can you elaborate?
If I understand this request correctly, this is planned for the NNBD release.
You can currently write |
2 & 3, yes!thanks!, |
can you add these |
Dart Ad 4: list?.add(1) will add Not sure what 5. mean. The type of |
|
There is currently no easy way to take an action if an argument value is not null. We have if (list != null) myList.addAll(list); For The syntax The unmatched |
thanks!
|
add property or getter of selected to List;
list?.asMap()?.keys?.map(...) =>list?.asMap().keys.map(...);
when ?. get null , cade after should stop ;
{...map} , map should can be null like javascript?
The text was updated successfully, but these errors were encountered: