AuthService constructor

AuthService({
  1. required AuthRepository authRepository,
  2. required FlutterSecureStorage storage,
})

Implementation

AuthService({
  required AuthRepository authRepository,
  required FlutterSecureStorage storage,
}) : _authRepository = authRepository,
     _storage = storage;