class SelectDeviceIMEIRES { bool biometricEnabled; String createdOn; String editedOn; int iD; String iMEI; String identificationNo; int logInType; String mobile; String name; String nameN; bool outSA; int patientID; int patientType; int preferredLanguage; SelectDeviceIMEIRES( {this.biometricEnabled, this.createdOn, this.editedOn, this.iD, this.iMEI, this.identificationNo, this.logInType, this.mobile, this.name, this.nameN, this.outSA, this.patientID, this.patientType, this.preferredLanguage}); SelectDeviceIMEIRES.fromJson(Map json) { biometricEnabled = json['BiometricEnabled']; createdOn = json['CreatedOn']; editedOn = json['EditedOn']; iD = json['ID']; iMEI = json['IMEI']; identificationNo = json['IdentificationNo']; logInType = json['LogInType']; mobile = json['Mobile']; name = json['Name']; nameN = json['NameN']; outSA = json['OutSA']; patientID = json['PatientID']; patientType = json['PatientType']; preferredLanguage = json['PreferredLanguage']; } Map toJson() { final Map data = new Map(); data['BiometricEnabled'] = this.biometricEnabled; data['CreatedOn'] = this.createdOn; data['EditedOn'] = this.editedOn; data['ID'] = this.iD; data['IMEI'] = this.iMEI; data['IdentificationNo'] = this.identificationNo; data['LogInType'] = this.logInType; data['Mobile'] = this.mobile; data['Name'] = this.name; data['NameN'] = this.nameN; data['OutSA'] = this.outSA; data['PatientID'] = this.patientID; data['PatientType'] = this.patientType; data['PreferredLanguage'] = this.preferredLanguage; return data; } }