Resp.fromMap constructor

Resp.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory Resp.fromMap(Map<String, dynamic> json) => Resp(
      errCode: json["errCode"],
      errInfo: json["errInfo"],
      fCount: json["fCount"],
      fType: json["fType"],
      iCount: json["iCount"],
      iType: json["iType"],
      nmPoints: json["nmPoints"],
      qScore: json["qScore"],
    );