class ProductDao {
final String name;
final double price;
int count;
ProductDao( {this.name, this.price, this.count});
}