|
|
|
|
@ -32,6 +32,7 @@ class DashboardService extends BaseService {
|
|
|
|
|
|
|
|
|
|
Future checkDoctorHasLiveCare() async {
|
|
|
|
|
hasError = false;
|
|
|
|
|
await getDoctorProfile(isGetProfile: true);
|
|
|
|
|
await baseAppClient.post(
|
|
|
|
|
DOCTOR_CHECK_HAS_LIVE_CARE,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
@ -43,7 +44,7 @@ class DashboardService extends BaseService {
|
|
|
|
|
super.error = error;
|
|
|
|
|
},
|
|
|
|
|
body: {
|
|
|
|
|
"DoctorID": 9920
|
|
|
|
|
"DoctorID": doctorProfile.doctorID// test user 9920
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|