diff options
Diffstat (limited to 'lib/services/authentication_service.dart')
| -rw-r--r-- | lib/services/authentication_service.dart | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/services/authentication_service.dart b/lib/services/authentication_service.dart index a1fd370..ede8808 100644 --- a/lib/services/authentication_service.dart +++ b/lib/services/authentication_service.dart @@ -1,10 +1,14 @@ class AuthenticationService { bool isAuthenticated = false; String apiKey = ''; + String storedPNumber = ''; + String storedDaycode = ''; Future<bool> authenticate(String username, String password) async { isAuthenticated = true; apiKey = 'test'; + storedPNumber = username; + storedDaycode = password; return true; } } |
