func showVaultManager(clientToken:completion:)
Hide Parameters
// 👇 Add this import PrimerSDK class MyViewController: UIViewController { // ... @IBAction func openVaultManagerTapped(_ sender: Any) { // 👇 Add this Primer.shared.showVaultManager(clientToken: clientToken) { err in if let err { // Handle the error } } } }