remember Mutable Contact Picker State
private fun rememberMutableContactPickerState(contactPicked: (Contact?) -> Unit): ContactPickerState(source)
Internal factory function to create and remember the state implementation.
Separation of the memory allocation from the initialization logic ensures that the state object is preserved correctly while allowing InitContactPicker to be called safely within the composition flow.
Return
A remembered ContactPickerStateImpl instance.
Parameters
contact Picked
Callback for selection events.