QAResultBean.fromJson constructor

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

Implementation

QAResultBean.fromJson(Map<String, dynamic> json) {
  ai = json['ai'] != null ? new Ai.fromJson(json['ai']) : null;
  apiVersion = json['apiVersion'];
  asr = json['asr'] != null ? new Asr.fromJson(json['asr']) : null;
  recordPath = json['recordPath'];
  status =
  json['status'] != null ? new Status.fromJson(json['status']) : null;
  traceId = json['traceId'];
}