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

Update product.dart

parent 3746c58a
class Product {
//variables for CAIT
final int id, price;
final String title, description, image;
Product({this.id, this.price, this.title, this.description, this.image});
}
// list of products
// for our demo
// list of tests
// test views demo
List<Product> products = [
Product(
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