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