Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created February 10, 2021 17:13
Show Gist options
  • Save marcossevilla/6154939042072def5a4bcce639d64547 to your computer and use it in GitHub Desktop.
Save marcossevilla/6154939042072def5a4bcce639d64547 to your computer and use it in GitHub Desktop.
Option<String> getOptional(Person person) {
final returnName = Random().nextBool();
if (returnName) {
return None();
} else {
return Some(person.name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment