Skip to content

Instantly share code, notes, and snippets.

@felipecastrosales
Created November 23, 2021 01:06
Show Gist options
  • Save felipecastrosales/a4990e45f48200b2388a139a2c5e97cd to your computer and use it in GitHub Desktop.
Save felipecastrosales/a4990e45f48200b2388a139a2c5e97cd to your computer and use it in GitHub Desktop.
POO - Variáveis Privadas
void main() {
var pessoa = Pessoa();
print(pessoa._altura);
}
class Pessoa {
double _altura = 1.85;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment