AuthService constructor

AuthService()

Implementation

factory AuthService() {
  if (_singleton == null) {
    _singleton = AuthService._();
  }
  return _singleton!;
}