Skip to content

Instantly share code, notes, and snippets.

@codingpizza
Created September 18, 2019 16:48
Print full name with second name as opcional
void printFullName(String name, String surname, [String secondName = ""]){
print("My name is: $name $secondName $surname");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment