[go: nahoru, domu]

blob: 885beee12b05c678f458c0810f697188db413e75 [file] [log] [blame]
package androidx.ui.rendering.box
// TODO(Migration/xbhatnag): const constructor
data class _IntrinsicDimensionsCacheEntry(
val dimension: _IntrinsicDimension,
val argument: Float
) {
// override fun equals(other: Any?): Boolean {
// if (other !is _IntrinsicDimensionsCacheEntry)
// return false
// return dimension == other.dimension && argument == other.argument
// }
// @override
// int get hashCode => hashValues(dimension, argument);
}