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