// Copyright © 2022 Olo Inc. All rights reserved.
// This software is made available under the Olo Pay SDK License (See LICENSE.md file)
//
//  OloPaySDKPluginExtensions.swift
//  Plugin
//
//  Created by Justin Anderson on 11/10/22.
//

import Foundation
import Capacitor

extension CAPPlugin {
    func emitDigitalWalletReadyEvent(isReady: Bool) {
        notifyListeners(DataKeys.DigitalWalletReadyEvent, data: [DataKeys.DigitalWalletIsReadyKey: isReady])
    }
}
