Advertisement
ak133720

product

Nov 18th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // models/product.dart
  2. import 'package:flutter/material.dart';
  3.  
  4. class Product {
  5. final String title;
  6. final String description;
  7. final double price;
  8. final String image;
  9. final bool isFavourite;
  10.  
  11. Product(
  12. {required this.title,
  13. required this.description,
  14. required this.price,
  15. required this.image,
  16. this.isFavourite = false}
  17. );
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement