Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created February 10, 2021 17:13
Show Gist options
  • Save marcossevilla/ffc06bceb6f71678c91ae13624ec5623 to your computer and use it in GitHub Desktop.
Save marcossevilla/ffc06bceb6f71678c91ae13624ec5623 to your computer and use it in GitHub Desktop.
void main() {
final me = Person(21, 'Marcos');
final option = getOptional(me);
option.fold(
() => print('None!'),
(name) => print('Aha! Your name is $name'),
);
}
// None!
// Aha! Your name is Marcos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment