Skip to content

Instantly share code, notes, and snippets.

@catalunha
Created November 27, 2020 20:23
Show Gist options
  • Save catalunha/8238397e973b1b6dae6845a8afa526dc to your computer and use it in GitHub Desktop.
Save catalunha/8238397e973b1b6dae6845a8afa526dc to your computer and use it in GitHub Desktop.
Resumo Dart - POO - exemplo static
class Produto {
String nome;
Produto(this.nome);
static int visto = 0;
@override
String toString() {
return 'Produto $nome Visto: $visto';
}
}
void main() {
Produto produto1 = Produto('a');
Produto.visto++;
print(produto1);
Produto produto2 = Produto('b');
Produto.visto++;
print(produto2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment