Skip to content

Instantly share code, notes, and snippets.

@nunomazer
Created March 27, 2020 20:18
Show Gist options
  • Select an option

  • Save nunomazer/4575666b7ce682976959023a2bfea3af to your computer and use it in GitHub Desktop.

Select an option

Save nunomazer/4575666b7ce682976959023a2bfea3af to your computer and use it in GitHub Desktop.
Exemplo de classe em Dart
class Pessoa {
// atributos
String nome;
int idade;
// métodos
void cumprimentar(String nome) {
print ("Olá " + nome + " me chamo " + this.nome );
}
}
void main() {
Pessoa p = new Pessoa();
p.nome = "Ademir";
p.idade = 46;
p.cumprimentar("Mario");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment