mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-04 16:49:37 +00:00
25 lines
631 B
Dart
25 lines
631 B
Dart
class Product {
|
|
Product({
|
|
required this.id,
|
|
required this.name,
|
|
required this.url,
|
|
required this.imageUrls,
|
|
required this.rating,
|
|
required this.price
|
|
});
|
|
|
|
String id;
|
|
String name;
|
|
String url;
|
|
List<String> imageUrls;
|
|
double rating;
|
|
double price;
|
|
|
|
Product.fromJson(Map<String, dynamic> json)
|
|
: id = json['id'] as String,
|
|
name = json['name'] as String,
|
|
url = json['url'] as String,
|
|
imageUrls = json['imageUrls'] as List<String>,
|
|
rating = json['rating'] as double,
|
|
price = json['name'] as double;
|
|
} |