Skip to content

Instantly share code, notes, and snippets.

@felipecastrosales
Last active November 22, 2021 22:45
Show Gist options
  • Save felipecastrosales/5e62fa889624f239cf176a8277921c6c to your computer and use it in GitHub Desktop.
Save felipecastrosales/5e62fa889624f239cf176a8277921c6c to your computer and use it in GitHub Desktop.
POO - Atributos
void main() {
var pessoa = Pessoa();
print(pessoa.nome); // 'Felipe'
}
class Pessoa {
String nome = 'Felipe';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment