You are on page 1of 1

class Product{

String name;
String description;
String pathOfImage;
num price;
Product(this.name, this.description, this.pathOfImage, this.price);
//Product({required this.name,required this.description,required
this.pathOfImage,required this.price});
}

You might also like