Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created February 10, 2021 17:13
Show Gist options
  • Save marcossevilla/91d8249e2dc45bf0336c37dee28dfffe to your computer and use it in GitHub Desktop.
Save marcossevilla/91d8249e2dc45bf0336c37dee28dfffe to your computer and use it in GitHub Desktop.
void main() {
final greeting = (String name) {
return 'Hi $name';
};
saySomething(greeting);
}
void saySomething(Function(String) message) {
print(message('Marcos'));
}
// Hi Marcos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment