Bluetooth State
data class BluetoothState(val hasPermissions: Boolean = false, val enabled: Boolean = false, val bondedDevices: List<BluetoothDevice> = emptyList())
A snapshot in time of the state of the bluetooth subsystem.
Constructors
Link copied to clipboard
constructor(hasPermissions: Boolean = false, enabled: Boolean = false, bondedDevices: List<BluetoothDevice> = emptyList())