Skip to content

Instantly share code, notes, and snippets.

@emlanis
Created March 13, 2020 22:21
Show Gist options
  • Select an option

  • Save emlanis/0c3e4da915ada09459e9af7bc5f8589d to your computer and use it in GitHub Desktop.

Select an option

Save emlanis/0c3e4da915ada09459e9af7bc5f8589d to your computer and use it in GitHub Desktop.
void main() {
List<String> myList = [
'Noor',
'Miri',
'Zee',
'Sule',
];
print(myList[0]);
print(myList.indexOf('Noor'));
// myList.add('Emlanis');
print(myList);
myList.insert(2, 'Emlanis');
print(myList);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment