fun getContentIfNotHandled()

in app/src/main/java/com/example/android/uamp/utils/Event.kt [33:40]


    fun getContentIfNotHandled(): T? {
        return if (hasBeenHandled) {
            null
        } else {
            hasBeenHandled = true
            content
        }
    }