Skip to content

Instantly share code, notes, and snippets.

@kharioki
Created April 20, 2020 22:13
Show Gist options
  • Save kharioki/93ecd9b1222361fa5296db7bce8e4614 to your computer and use it in GitHub Desktop.
Save kharioki/93ecd9b1222361fa5296db7bce8e4614 to your computer and use it in GitHub Desktop.
Flutter Lists
import 'dart:math';
void main() {
List<String> myList = [
'Angela',
'Tony',
'June',
'Tessie'
];
// print(myList[2]);
// print(myList.indexOf('Tessie'));
// myList.add('Rose');
// myList.insert(2, 'Patrick');
print(myList);
print(myList.first);
print(myList.last);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment