getSecureStore function
Implementation
Future<SecureStore> getSecureStore({
required SecureStoreType type,
required Future<String?> Function() getPassword,
}) async {
if (type == SecureStoreType.biometrics) {
return BiometricsStore();
}
return PasswordStore(getPassword: getPassword);
}