Resp.fromJson constructor

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

Implementation

Resp.fromJson(Map<String, dynamic> json) {
  errCode = json['errCode'] ?? '';
  errInfo = json['errInfo'] ?? '';
  fCount = json['fCount'] ?? '';
  fType = json['fType'] ?? '';
  iCount = json['iCount'] ?? '';
  iType = json['iType'] ?? '';
  pCount = json['pCount'] ?? '';
  pType = json['pType'] ?? '';
  nmPoints = json['nmPoints'] ?? '';
  qScore = json['qScore'] ?? '';
}