class StartCallReq { int vCID; bool isrecall; String tokenID; String generalid; int doctorId; bool isOutKsa; String projectName; String docotrName; String clincName; String docSpec; int clinicId; StartCallReq( {this.vCID, this.isrecall, this.tokenID, this.generalid, this.doctorId, this.isOutKsa, this.projectName, this.docotrName, this.clincName, this.docSpec, this.clinicId}); StartCallReq.fromJson(Map json) { vCID = json['VC_ID']; isrecall = json['isrecall']; tokenID = json['TokenID']; generalid = json['generalid']; doctorId = json['DoctorId']; isOutKsa = json['IsOutKsa']; projectName = json['projectName']; docotrName = json['DocotrName']; clincName = json['clincName']; docSpec = json['Doc_Spec']; clinicId = json['ClinicId']; } Map toJson() { final Map data = new Map(); data['VC_ID'] = this.vCID; data['isrecall'] = this.isrecall; data['TokenID'] = this.tokenID; data['generalid'] = this.generalid; data['DoctorId'] = this.doctorId; data['IsOutKsa'] = this.isOutKsa; data['projectName'] = this.projectName; data['DocotrName'] = this.docotrName; data['clincName'] = this.clincName; data['Doc_Spec'] = this.docSpec; data['ClinicId'] = this.clinicId; return data; } }