Created
November 23, 2021 01:06
-
-
Save felipecastrosales/a4990e45f48200b2388a139a2c5e97cd to your computer and use it in GitHub Desktop.
POO - Variáveis Privadas
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._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