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