Created
September 22, 2019 20:56
-
-
Save annacruz/1d10f639a5d4f8edb44a911f21b950de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
criarBotao("BotaoSair", cor: "Preto", largura: 15.0); | |
} | |
void criarBotao(String texto, {String cor, double largura}) { | |
print(texto); | |
print(cor); | |
print(largura); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment