Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. void main() {
  2. metodoSemFuncao();
  3. metodoComFuncao(funcao);
  4.  
  5. }
  6.  
  7. void metodoSemFuncao(){
  8. funcao();
  9. }
  10.  
  11. void metodoComFuncao(Function func){
  12. func();
  13. }
  14.  
  15. void funcao(){
  16. print("Botão Criado!");
  17. }
  18.  
  19. Botão Criado!
  20. Botão Criado!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement