AuthService constructor Null safety
Implementation
factory AuthService() {
if (_singleton == null) {
_singleton = AuthService._();
}
return _singleton!;
}
factory AuthService() {
if (_singleton == null) {
_singleton = AuthService._();
}
return _singleton!;
}