|
|
|
|
@ -16,6 +16,7 @@ class PatientLabOrders {
|
|
|
|
|
int gender;
|
|
|
|
|
String genderDescription;
|
|
|
|
|
String invoiceNo;
|
|
|
|
|
String invoiceNo_VP;
|
|
|
|
|
bool isActiveDoctorProfile;
|
|
|
|
|
bool isDoctorAllowVedioCall;
|
|
|
|
|
bool isExecludeDoctor;
|
|
|
|
|
@ -68,6 +69,7 @@ class PatientLabOrders {
|
|
|
|
|
this.projectNameN,
|
|
|
|
|
this.qR,
|
|
|
|
|
this.setupID,
|
|
|
|
|
this.invoiceNo_VP,
|
|
|
|
|
this.speciality,this.isLiveCareAppointment});
|
|
|
|
|
|
|
|
|
|
PatientLabOrders.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
@ -103,6 +105,7 @@ class PatientLabOrders {
|
|
|
|
|
projectNameN = json['ProjectNameN'];
|
|
|
|
|
qR = json['QR'];
|
|
|
|
|
setupID = json['SetupID'];
|
|
|
|
|
invoiceNo_VP = json['invoiceNo_VP'];
|
|
|
|
|
isLiveCareAppointment = json['IsLiveCareAppointment'];
|
|
|
|
|
// speciality = json['Speciality'].cast<String>();
|
|
|
|
|
}
|
|
|
|
|
@ -143,6 +146,7 @@ class PatientLabOrders {
|
|
|
|
|
data['SetupID'] = this.setupID;
|
|
|
|
|
data['Speciality'] = this.speciality;
|
|
|
|
|
data['IsLiveCareAppointment'] = this.isLiveCareAppointment;
|
|
|
|
|
data['invoiceNo_VP'] =this.invoiceNo_VP;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|