retrieve static method
Retrieves the secret.
You need to provide a prompt for Android and iOS. Prompt for iOS is used only with TouchID. FaceID uses strings for Info.plist.
Implementation
static Future<String> retrieve(RetrieveSecretRequest request) async {
return await _catchCommonError(() async {
final value = await _hostApi.retrieve(request);
return value;
});
}