Debounce Radio Button
fun DebounceRadioButton(selected: Boolean, onClick: () -> Unit?, modifier: Modifier = Modifier, waitInterval: Long = Blocker.getInterval(), enabled: Boolean = true, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, colors: RadioButtonColors = RadioButtonDefaults.colors())
A DebounceRadioButton is a RadioButton that prevents multiple clicks in a short time. This callback only emit an item from an Observable if a particular timespan has passed without it emitting another item.
Parameters
wait Interval
wait interval; default interval is 2000Ms