/// /// LocatorText.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 "LocatorText". */ @DoNotStrip @Keep data class LocatorText( @DoNotStrip @Keep val before: String?, @DoNotStrip @Keep val highlight: String?, @DoNotStrip @Keep val after: String? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(before: String?, highlight: String?, after: String?): LocatorText { return LocatorText(before, highlight, after) } } }