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