Skip to content

Instantly share code, notes, and snippets.

@Erinziyi
Created March 14, 2019 09:47
Show Gist options
  • Select an option

  • Save Erinziyi/34c13025c1f83c705714035dedd5db04 to your computer and use it in GitHub Desktop.

Select an option

Save Erinziyi/34c13025c1f83c705714035dedd5db04 to your computer and use it in GitHub Desktop.
Type in List Dart
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