Skip to content

Instantly share code, notes, and snippets.

View sunil-singh-chaudhary's full-sized avatar
🎯
Focusing

Sunil SIngh sunil-singh-chaudhary

🎯
Focusing
  • Droidshift IT Solution Delhi India
  • Noida
View GitHub Profile
@sunil-singh-chaudhary
sunil-singh-chaudhary / List function
Created July 27, 2022 08:04
List function all with demo flutter
ListDemoWorkExample() {
var myList = [11, 12, 123, 1343, 13, 4, 44, 56, 66];
myList.forEach((element) {
print(element);
});
var newList = ['sun', 'Mon', 'tue', 'wed', 'thr', 'fri', 'sat'];
newList.forEach((element) {
if (element[0] == 't') {