/// /// Insets.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2026 Marc Rousavy @ Margelo /// package com.margelo.nitro.unistyles import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "Insets". */ @DoNotStrip @Keep data class Insets( @DoNotStrip @Keep val top: Double, @DoNotStrip @Keep val bottom: Double, @DoNotStrip @Keep val left: Double, @DoNotStrip @Keep val right: Double, @DoNotStrip @Keep val ime: Double ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(top: Double, bottom: Double, left: Double, right: Double, ime: Double): Insets { return Insets(top, bottom, left, right, ime) } } }