diff --git a/lib/providers/auth_provider.dart b/lib/providers/auth_provider.dart index 314dfeb0..4b29cb70 100644 --- a/lib/providers/auth_provider.dart +++ b/lib/providers/auth_provider.dart @@ -1,20 +1,17 @@ import 'dart:convert'; import 'package:doctor_app_flutter/client/app_client.dart'; import 'package:flutter/cupertino.dart'; - -import '../config/config.dart'; -import '../interceptor/http_interceptor.dart'; import '../models/user_model.dart'; const LOGIN_URL = - 'Services/Sentry.svc/REST/MemberLogIN_New'; + 'Sentry.svc/REST/MemberLogIN_New'; const INSERT_DEVICE_IMEI = 'Services/Sentry.svc/REST/DoctorApplication_INSERTDeviceIMEI'; const SELECT_DEVICE_IMEI = - 'Services/Sentry.svc/REST/DoctorApplication_SELECTDeviceIMEIbyIMEI'; + 'Sentry.svc/REST/DoctorApplication_SELECTDeviceIMEIbyIMEI'; const SEND_ACTIVATION_CODE_BY_OTP_NOTIFICATION_TYPE = - 'Services/Sentry.svc/REST/DoctorApplication_SendActivationCodebyOTPNotificationType'; + 'Sentry.svc/REST/DoctorApplication_SendActivationCodebyOTPNotificationType'; const MEMBER_CHECK_ACTIVATION_CODE_NEW ='Services/Sentry.svc/REST/MemberCheckActivationCode_New'; class AuthProvider with ChangeNotifier {