import 'package:diplomaticquarterapp/config/config.dart'; import 'package:diplomaticquarterapp/config/shared_pref_kay.dart'; import 'package:diplomaticquarterapp/core/service/base_service.dart'; import 'package:diplomaticquarterapp/uitl/app_shared_preferences.dart'; import 'package:diplomaticquarterapp/core/model/pharmacies/Prescriptions.dart'; class PrescriptionService extends BaseService { final AppSharedPreferences sharedPref = AppSharedPreferences(); bool isFinished = true; bool hasError = false; String errorMsg = ''; String url = ""; List _prescriptionsList = List(); List get prescriptionsList => _prescriptionsList; Future getPrescription() async { hasError = false; url = PRESCRIPTION; print("Print PRESCRIPTION url" + url); await baseAppClient.post(url, onSuccess: (dynamic response, int statusCode) { _prescriptionsList.clear(); response['PatientPrescriptionList'].forEach((item) { _prescriptionsList.add(Prescriptions.fromJson(item)); }); print(_prescriptionsList.length); print(response); }, onFailure: (String error, int statusCode) { hasError = true; super.error = error; }); } // Future getPrescription() async { // hasError = false; // Map body = Map(); // body['isDentalAllowedBackend'] = false; // await baseAppClient.post(PRESCRIPTION, // onSuccess: (dynamic response, int statusCode) { // prescriptionsList.clear(); // response['PatientPrescriptionList'].forEach((prescriptions) { // prescriptionsList.add(Prescriptions.fromJson(prescriptions)); // }); // }, onFailure: (String error, int statusCode) { // hasError = true; // super.error = error; // }, body: body); // } }