nesward_flutter_app/lib/models/product.dart

9 lines
193 B
Dart

class Product {
final int id;
final String name;
final double price;
final String image;
Product({required this.id, required this.name, required this.price, required this.image});
}