Skip to content

Instantly share code, notes, and snippets.

@Modoo-Dev
Created March 20, 2023 12:44
Show Gist options
  • Save Modoo-Dev/a03ee0eb1ab18ff3d1cceba7acfbbafa to your computer and use it in GitHub Desktop.
Save Modoo-Dev/a03ee0eb1ab18ff3d1cceba7acfbbafa to your computer and use it in GitHub Desktop.
dartPractice-collection
void main(List<String> arguments) {
List nestedList = [['apple', 'orange'], [true,false], null,[1,'golf',3]];
print('list 값: $nestedList');
print('list 길이: ${nestedList.length}');
print('마지막 item길이: ${nestedList.last.length}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment