Last active
November 22, 2021 22:51
-
-
Save felipecastrosales/e51e58cbf9c1d0135074de33fbef2b7b to your computer and use it in GitHub Desktop.
POO - Métodos
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() { | |
var pessoa = Pessoa(); | |
print(pessoa.nome); // 'Felipe' | |
pessoa.estudar(); // 'Felipe está estudando POO' | |
} | |
class Pessoa { | |
String nome = 'Felipe'; | |
void estudar(){ | |
print('$nome está estudando POO'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment