Created
March 14, 2019 09:47
-
-
Save Erinziyi/34c13025c1f83c705714035dedd5db04 to your computer and use it in GitHub Desktop.
Type in List Dart
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
| void main(){ | |
| var mixedList = [1,2,3,'Orange','Apple']; | |
| mixedList.add(2.3); | |
| mixedList.add([100,200,300]); | |
| print(mixedList); | |
| } | |
| void main(){ | |
| var twoDList =[[1,2,3],[4,5,6]]; | |
| print(twoDList[0][2]); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment