Advertisement
joaopaulofcc

Untitled

Sep 23rd, 2020
778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.16 KB | None | 0 0
  1. class Produto {
  2.   final String nome;
  3.   final int quantidade;
  4.   final double valor;
  5.  
  6.   Produto(
  7.     this.nome,
  8.     this.quantidade,
  9.     this.valor,
  10.   );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement