mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-03 16:19:51 +00:00
33 lines
1.1 KiB
Dart
33 lines
1.1 KiB
Dart
//import 'dart:ffi';
|
|
|
|
class Product {
|
|
Product({
|
|
required this.id,
|
|
required this.name,
|
|
required this.url,
|
|
required this.imageUrls,
|
|
required this.rating,
|
|
required this.price,
|
|
required this.description,
|
|
required this.wasOpened,
|
|
});
|
|
|
|
String id;
|
|
String name;
|
|
String url;
|
|
List<String> imageUrls;
|
|
double rating;
|
|
double price;
|
|
String description;
|
|
bool wasOpened;
|
|
|
|
Product.fromJson(Map<String, dynamic> json)
|
|
: id = json['id'] as String,
|
|
name = json['name'] as String,
|
|
url = json['url'] as String,
|
|
imageUrls = (json['imageUrls'] is Null) ? [''] : json['imageUrls'] as List<String>,
|
|
rating = (json['rating'] is int) ? (json['rating'] as int).toDouble() : json['rating'] as double,
|
|
price = (json['price'] is int) ? (json['price'] as int).toDouble() : json['price'] as double,
|
|
description = (json['description'] is Null) ? '' : json['description'] as String,
|
|
wasOpened = (json['wasOpened'] is Null) ? false : json['wasOpened'] as bool;
|
|
} |