Last active
March 1, 2023 17:34
-
-
Save ulisseshen/42e7806b17143c50e70029d3a54d897f to your computer and use it in GitHub Desktop.
Criando lista de pessoas.
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() { | |
List<Pessoa> pessoas = [ | |
Pessoa('Maria', 34), | |
Pessoa('João', 25), | |
Pessoa('Pedro', 23), | |
Pessoa('João', 18), | |
Pessoa('João', 17), | |
Pessoa('Lucas', 15), | |
Pessoa('Maria', 37), | |
Pessoa('Maria', 18), | |
Pessoa('Pedro', 20), | |
Pessoa('Lucas', 25), | |
]; | |
// more code here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment