HighCommissionResult.fromJson constructor

HighCommissionResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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