import 'package:json_annotation/json_annotation.dart'; part 'product.g.dart'; @JsonSerializable() class Product { Product(); num id; String image; String store_name; String cate_id; String price; String ot_price; String sales; String unit_name; List activity; String vip_price; factory Product.fromJson(Map json) => _$ProductFromJson(json); Map toJson() => _$ProductToJson(this); }