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