prevBondState property
BluetoothBondState?
get
prevBondState
Get the previous bondState of the device (Android Only)
Implementation
BluetoothBondState? get prevBondState {
var b = FlutterBluePlus._bondStates[remoteId]?.prevState;
return b != null ? _bmToBondState(b) : null;
}