Skip to content

Instantly share code, notes, and snippets.

@Chinecherem20199
Created May 12, 2022 13:27
Show Gist options
  • Save Chinecherem20199/5980b82c0bc84b6598e7d6da80b02891 to your computer and use it in GitHub Desktop.
Save Chinecherem20199/5980b82c0bc84b6598e7d6da80b02891 to your computer and use it in GitHub Desktop.
function2
void main() {
var values = [1, 2, 3, 4, 5, 6, 7, 8, 9];
var newVlues = <int>[];
var multiply5 = (int value) => newVlues.add(value * 5);
listOperation(values, multiply5);
print(newVlues);
}
void listOperation(List<int> list, void Function(int) action) {
for (var item in list) {
action(item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment