Skip to content

Instantly share code, notes, and snippets.

@rubgithub
Last active May 3, 2020 14:33
Show Gist options
  • Save rubgithub/d98ad76b6e985e6cff27ecc7aea07d29 to your computer and use it in GitHub Desktop.
Save rubgithub/d98ad76b6e985e6cff27ecc7aea07d29 to your computer and use it in GitHub Desktop.
void main() {
Nome(null).imprimir();
}
class Nome {
Nome(this.nome) : assert(nome != null && nome.isNotEmpty);
final String nome;
imprimir(){
print('Meu nome é $nome');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment