fun getContentIfNotHandled()

in app/src/main/java/com/example/android/architecture/blueprints/todoapp/Event.kt [32:39]


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