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