AdditionalInfoItem

data class AdditionalInfoItem(val icon: @Composable () -> Unit? = null, val key: String? = null, val value: String, val isConstantItem: Boolean = false, val color: Color? = null, val action: () -> Unit? = null)

Constructors

Link copied to clipboard
constructor(icon: @Composable () -> Unit? = null, key: String? = null, value: String, isConstantItem: Boolean = false, color: Color? = null, action: () -> Unit? = null)

Properties

Link copied to clipboard
val action: () -> Unit? = null
Link copied to clipboard
val color: Color? = null
Link copied to clipboard
val icon: @Composable () -> Unit? = null
Link copied to clipboard
val isConstantItem: Boolean = false
Link copied to clipboard
val key: String? = null
Link copied to clipboard