Created
April 30, 2017 19:47
-
-
Save zidenis/78cd3ae0723e073b5caf5104e611f40d to your computer and use it in GitHub Desktop.
Conditional Member Access
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<String> lst; | |
lst?.add("Java"); | |
lst = []; | |
lst?.add("Dart"); | |
lst?.add("C"); | |
print(lst); // [Dart, C] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment