HotdayResult.fromJson constructor
Implementation
factory HotdayResult.fromJson(Map<String, dynamic> json) => HotdayResult(
totalNum: json["totalNum"],
list: List<Product>.from(json["list"].map((x) => Product.fromJson(x))),
pageId: json["pageId"],
);