/// /// LDP_NativeAssetSource.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.lunardatepicker import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "LDP_NativeAssetSource". */ @DoNotStrip @Keep data class LDP_NativeAssetSource( @DoNotStrip @Keep val uri: String, @DoNotStrip @Keep val width: Double?, @DoNotStrip @Keep val height: Double?, @DoNotStrip @Keep val scale: Double? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(uri: String, width: Double?, height: Double?, scale: Double?): LDP_NativeAssetSource { return LDP_NativeAssetSource(uri, width, height, scale) } } }