prevBondState property

BluetoothBondState? 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;
}