/// /// SelectionEvent.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.reactnativereadium import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "SelectionEvent". */ @DoNotStrip @Keep data class SelectionEvent( @DoNotStrip @Keep val locator: Locator?, @DoNotStrip @Keep val selectedText: String? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(locator: Locator?, selectedText: String?): SelectionEvent { return SelectionEvent(locator, selectedText) } } }