MyMultiDropdownIndex

fun <T> MyMultiDropdownIndex(items: List<T>, selectedIndices: MutableState<List<Int>>, modifier: Modifier = Modifier, mapper: @Composable (item: T) -> String = { it.toString() }, title: String = "", enabled: Boolean = true, color: Color = Color.Unspecified, backgroundColor: Color = Color.Unspecified, onSelectionChange: (List<Int>) -> Unit? = null)
fun <T> MyMultiDropdownIndex(items: List<T>, selectedIndices: List<Int>, modifier: Modifier = Modifier, mapper: @Composable (item: T) -> String = { it.toString() }, title: String = "", enabled: Boolean = true, color: Color = Color.Unspecified, backgroundColor: Color = Color.Unspecified, onSelectionChange: (List<Int>) -> Unit)