You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
596 B
Dart
30 lines
596 B
Dart
|
|
import 'package:driverapp/core/service/base_service.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
class AuthenticationService extends BaseService {
|
|
String selectedClinicName;
|
|
bool isLogin = false;
|
|
bool isLoading = true;
|
|
|
|
AuthenticationService() {
|
|
// getUserAuthentication();
|
|
}
|
|
|
|
// void getUserAuthentication() async {
|
|
// if (profile != null) {
|
|
//// doctorProfile = new DoctorProfileModel.fromJson(profile);
|
|
// isLoading = false;
|
|
// isLogin = true;
|
|
// } else {
|
|
// isLoading = false;
|
|
// isLogin = false;
|
|
// }
|
|
// notifyListeners();
|
|
// }
|
|
|
|
|
|
|
|
}
|