Skip to content

Instantly share code, notes, and snippets.

@marcusedu
Last active October 31, 2018 20:33
Show Gist options
  • Save marcusedu/7a8b4ecd7dd962fbe7567fa0fe3c1e63 to your computer and use it in GitHub Desktop.
Save marcusedu/7a8b4ecd7dd962fbe7567fa0fe3c1e63 to your computer and use it in GitHub Desktop.
main(){
exemploParametroNomeadoOpcional("Olá viajante!");
exemploParametroNomeadoOpcional("Olá undead!", sujeito: "Crestfallen Warrior");
}
void exemploParametroNomeadoOpcional(String msg/*Parâmetro obrigatorio*/,
{String sujeito/*Parâmetro opcional*/}){
print('$sujeito: $msg');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment