|
|
|
|
@ -68,17 +68,15 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
|
|
|
|
|
PatiantInformtion _selectedPatient;
|
|
|
|
|
|
|
|
|
|
Future<Map> getPatientList(PatientModel patient, patientType) async {
|
|
|
|
|
getPatientList(PatientModel patient, patientType) async {
|
|
|
|
|
int val = int.parse(patientType);
|
|
|
|
|
|
|
|
|
|
final url =
|
|
|
|
|
BASE_URL + "DoctorApplication.svc/REST/" + SERVICES_PATIANT[val];
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
await BaseAppClient.post(url,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
return Future.value(response);
|
|
|
|
|
}, onFailure: (String error, int statusCode) {
|
|
|
|
|
var localResponse ;
|
|
|
|
|
await BaseAppClient.post( 'DoctorApplication.svc/REST/'+SERVICES_PATIANT[val],
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) async{
|
|
|
|
|
localResponse = response;
|
|
|
|
|
}, onFailure: (String error, int statusCode) async{
|
|
|
|
|
throw error;
|
|
|
|
|
}, body: {
|
|
|
|
|
"ProjectID": patient.ProjectID,
|
|
|
|
|
@ -102,9 +100,12 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
"IsLoginForDoctorApp": patient.IsLoginForDoctorApp,
|
|
|
|
|
"PatientOutSA": patient.PatientOutSA
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return localResponse;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setBasicData() {
|
|
|
|
|
@ -125,21 +126,10 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
setBasicData();
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
final response = await AppClient.post(GET_PATIENT_VITAL_SIGN,
|
|
|
|
|
body: json.encode(patient));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
await BaseAppClient.post(GET_PATIENT_VITAL_SIGN,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
patientVitalSignList = [];
|
|
|
|
|
res['List_DoctorPatientVitalSign'].forEach((v) {
|
|
|
|
|
response['List_DoctorPatientVitalSign'].forEach((v) {
|
|
|
|
|
patientVitalSignList.add(new VitalSignResModel.fromJson(v));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
@ -152,21 +142,22 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
a.vitalSignDate.microsecondsSinceEpoch;
|
|
|
|
|
});
|
|
|
|
|
patientVitalSignOrderdSubList.clear();
|
|
|
|
|
for (int x = 0; x < 20; x++) {
|
|
|
|
|
int length = patientVitalSignOrderdSubListTemp.length >= 20 ? 20 : patientVitalSignOrderdSubListTemp.length;
|
|
|
|
|
for (int x = 0; x < length; x++) {
|
|
|
|
|
patientVitalSignOrderdSubList
|
|
|
|
|
.add(patientVitalSignOrderdSubListTemp[x]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: patient);
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -185,33 +176,22 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
setBasicData();
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
final response = await AppClient.post(GET_PATIENT_LAB_OREDERS,
|
|
|
|
|
body: json.encode(patient));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
await BaseAppClient.post(GET_PATIENT_LAB_OREDERS,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
patientLabResultOrdersList = [];
|
|
|
|
|
res['List_GetLabOreders'].forEach((v) {
|
|
|
|
|
response['List_GetLabOreders'].forEach((v) {
|
|
|
|
|
patientLabResultOrdersList.add(new LabOrdersResModel.fromJson(v));
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: patient);
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -226,36 +206,24 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
*/
|
|
|
|
|
getOutPatientPrescriptions(patient) async {
|
|
|
|
|
setBasicData();
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
final response =
|
|
|
|
|
await AppClient.post(GET_PRESCRIPTION, body: json.encode(patient));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
await BaseAppClient.post(GET_PRESCRIPTION,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
patientPrescriptionsList = [];
|
|
|
|
|
res['PatientPrescriptionList'].forEach((v) {
|
|
|
|
|
response['PatientPrescriptionList'].forEach((v) {
|
|
|
|
|
patientPrescriptionsList
|
|
|
|
|
.add(new PrescriptionResModel.fromJson(v));
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: patient);
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -339,33 +307,23 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
// notifyListeners();
|
|
|
|
|
setBasicData();
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
final response =
|
|
|
|
|
await AppClient.post(GET_RADIOLOGY, body: json.encode(patient));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
await BaseAppClient.post(GET_RADIOLOGY,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
patientRadiologyList = [];
|
|
|
|
|
res['List_GetRadOreders'].forEach((v) {
|
|
|
|
|
response['List_GetRadOreders'].forEach((v) {
|
|
|
|
|
patientRadiologyList.add(new RadiologyResModel.fromJson(v));
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: patient);
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -399,31 +357,19 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
getPatientInsuranceApprovals(patient) async {
|
|
|
|
|
setBasicData();
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
final response = await AppClient.post(PATIENT_INSURANCE_APPROVALS_URL,
|
|
|
|
|
body: json.encode(patient));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
//patientRadiologyList = [];
|
|
|
|
|
insuranceApporvalsList = res['List_ApprovalMain_InPatient'];
|
|
|
|
|
} else {
|
|
|
|
|
await BaseAppClient.post(PATIENT_INSURANCE_APPROVALS_URL,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
insuranceApporvalsList = response['List_ApprovalMain_InPatient'];
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: patient);
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -437,30 +383,20 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
getPatientProgressNote(patient) async {
|
|
|
|
|
setBasicData();
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
final response = await AppClient.post(PATIENT_PROGRESS_NOTE_URL,
|
|
|
|
|
body: json.encode(patient));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
patientProgressNoteList = res['List_GetPregressNoteForInPatient'];
|
|
|
|
|
} else {
|
|
|
|
|
await BaseAppClient.post(PATIENT_PROGRESS_NOTE_URL,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
patientProgressNoteList = response['List_GetPregressNoteForInPatient'];
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: patient);
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -472,38 +408,22 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
*@desc: getDoctorsList
|
|
|
|
|
*/
|
|
|
|
|
getDoctorsList(String clinicId) async {
|
|
|
|
|
String token = await sharedPref.getString(TOKEN);
|
|
|
|
|
int projectID = await sharedPref.getInt(PROJECT_ID);
|
|
|
|
|
setBasicData();
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
_doctorsByClinicIdRequest.projectID = projectID;
|
|
|
|
|
_doctorsByClinicIdRequest.clinicID = clinicId;
|
|
|
|
|
_doctorsByClinicIdRequest.tokenID = token;
|
|
|
|
|
|
|
|
|
|
final response = await AppClient.post(PATIENT_GET_DOCTOR_BY_CLINIC_URL,
|
|
|
|
|
body: json.encode(_doctorsByClinicIdRequest));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
doctorsList = res['List_Doctors_All'];
|
|
|
|
|
} else {
|
|
|
|
|
_doctorsByClinicIdRequest.clinicID = clinicId;
|
|
|
|
|
await BaseAppClient.post(PATIENT_GET_DOCTOR_BY_CLINIC_URL,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
doctorsList = response['List_Doctors_All'];
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: _doctorsByClinicIdRequest.toJson());
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -521,37 +441,22 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
*@desc: getClinicsList
|
|
|
|
|
*/
|
|
|
|
|
getClinicsList() async {
|
|
|
|
|
String token = await sharedPref.getString(TOKEN);
|
|
|
|
|
setBasicData();
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
int projectID = await sharedPref.getInt(PROJECT_ID);
|
|
|
|
|
_clinicByProjectIdRequest.projectID = projectID;
|
|
|
|
|
_clinicByProjectIdRequest.tokenID = token;
|
|
|
|
|
|
|
|
|
|
final response = await AppClient.post(PATIENT_GET_CLINIC_BY_PROJECT_URL,
|
|
|
|
|
body: json.encode(_clinicByProjectIdRequest));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
clinicsList = res['List_Clinic_All'];
|
|
|
|
|
} else {
|
|
|
|
|
await BaseAppClient.post(PATIENT_GET_CLINIC_BY_PROJECT_URL,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
clinicsList = response['List_Clinic_All'];
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: _clinicByProjectIdRequest.toJson());
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
@ -570,33 +475,22 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
*@desc: getReferralFrequancyList
|
|
|
|
|
*/
|
|
|
|
|
getReferralFrequancyList() async {
|
|
|
|
|
String token = await sharedPref.getString(TOKEN);
|
|
|
|
|
setBasicData();
|
|
|
|
|
try {
|
|
|
|
|
if (await Helpers.checkConnection()) {
|
|
|
|
|
_referralFrequencyRequest.tokenID = token;
|
|
|
|
|
final response = await AppClient.post(PATIENT_GET_LIST_REFERAL_URL,
|
|
|
|
|
body: json.encode(_referralFrequencyRequest));
|
|
|
|
|
final int statusCode = response.statusCode;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
if (statusCode < 200 || statusCode >= 400 || json == null) {
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Error While Fetching data';
|
|
|
|
|
} else {
|
|
|
|
|
var res = json.decode(response.body);
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
referalFrequancyList = res['list_STPReferralFrequency'];
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
await BaseAppClient.post(PATIENT_GET_LIST_REFERAL_URL,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
referalFrequancyList = response['list_STPReferralFrequency'];
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = false;
|
|
|
|
|
this.error = '';
|
|
|
|
|
},
|
|
|
|
|
onFailure: (String error, int statusCode) {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = res['ErrorMessage'] ?? res['ErrorEndUserMessage'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
isLoading = false;
|
|
|
|
|
isError = true;
|
|
|
|
|
error = 'Please Check The Internet Connection';
|
|
|
|
|
}
|
|
|
|
|
this.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: _referralFrequencyRequest.toJson());
|
|
|
|
|
notifyListeners();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
handelCatchErrorCase(err);
|
|
|
|
|
|