Skip to content

Instantly share code, notes, and snippets.

@felipecastrosales
Last active November 22, 2021 22:51
Show Gist options
  • Save felipecastrosales/e51e58cbf9c1d0135074de33fbef2b7b to your computer and use it in GitHub Desktop.
Save felipecastrosales/e51e58cbf9c1d0135074de33fbef2b7b to your computer and use it in GitHub Desktop.
POO - Métodos
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