/// /// NitroInAppBrowserOptions.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.nitroinappbrowser import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "NitroInAppBrowserOptions". */ @DoNotStrip @Keep data class NitroInAppBrowserOptions( @DoNotStrip @Keep val dismissButtonLabel: NitroInAppBrowserDismissButtonLabel?, @DoNotStrip @Keep val presentationStyle: NitroInAppBrowserPresentationStyle?, @DoNotStrip @Keep val barColor: String?, @DoNotStrip @Keep val controlColor: String? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(dismissButtonLabel: NitroInAppBrowserDismissButtonLabel?, presentationStyle: NitroInAppBrowserPresentationStyle?, barColor: String?, controlColor: String?): NitroInAppBrowserOptions { return NitroInAppBrowserOptions(dismissButtonLabel, presentationStyle, barColor, controlColor) } } }