TF-1915 Remove the needToOpen parameter in cases where it is not needed

(cherry picked from commit 1bd53ab9962494bbf48c86f4e61487f3316cbb62)
This commit is contained in:
dab246
2023-06-09 10:15:09 +07:00
committed by Dat Vu
parent 50635049ab
commit 20168f5e8d
5 changed files with 9 additions and 9 deletions
@@ -9,7 +9,7 @@ abstract class CredentialRepository {
Future<void> storeAuthenticationInfo(AuthenticationInfoCache authenticationInfoCache);
Future<AuthenticationInfoCache?> getAuthenticationInfoStored({bool needToReopen = false});
Future<AuthenticationInfoCache?> getAuthenticationInfoStored();
Future<void> removeAuthenticationInfo();
}