Commit 2f3a66d9 authored by Dasun Madushanka's avatar Dasun Madushanka

Update product.dart

parent 3746c58a
class Product { class Product {
//variables for CAIT
final int id, price; final int id, price;
final String title, description, image; final String title, description, image;
Product({this.id, this.price, this.title, this.description, this.image}); Product({this.id, this.price, this.title, this.description, this.image});
} }
// list of products // list of tests
// for our demo // test views demo
List<Product> products = [ List<Product> products = [
Product( Product(
id: 1, id: 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment