// Copyright © 2022 Olo Inc. All rights reserved. // This software is made available under the Olo Pay SDK License (See LICENSE.md file) package com.olopaysdkreactnative.events class FocusClearedEvent constructor( surfaceId: Int, reactTag: Int ): OloPayEvent(surfaceId, reactTag) { override fun getEventName(): String { return Name } companion object { const val Name = "onBlurEvent" } }