Skip to content

Instantly share code, notes, and snippets.

View xTudoS's full-sized avatar

Alexandre Rodrigues Batista xTudoS

View GitHub Profile
@xTudoS
xTudoS / main.dart
Last active June 7, 2019 01:43
Prova POO - Dart
class Cachorro {
String nome, raca, cor, porte;
double peso, altura;
int val;
Cachorro(this.nome, this.raca, this.cor, this.peso, this.altura) {
dynamic porte;
porte = setPorte();
this.val = porte[0];