Resp.fromMap constructor
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"],
);