Skip to content

Instantly share code, notes, and snippets.

@ulisseshen
Last active March 1, 2023 17:34
Show Gist options
  • Save ulisseshen/42e7806b17143c50e70029d3a54d897f to your computer and use it in GitHub Desktop.
Save ulisseshen/42e7806b17143c50e70029d3a54d897f to your computer and use it in GitHub Desktop.
Criando lista de pessoas.
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