RadioOption

data class RadioOption<T>(val value: T, val label: String, val description: String? = null)

A single option for SettingsRadioGroup.

Parameters

value

Typed domain value represented by this option.

label

Display text.

description

Optional secondary text shown below label.

Constructors

Link copied to clipboard
constructor(value: T, label: String, description: String? = null)

Properties

Link copied to clipboard
val description: String? = null
Link copied to clipboard
Link copied to clipboard
val value: T