unpair static method
Unpair a device. It might throw an error if device is not paired.
Implementation
static Future<void> unpair(
String deviceId, {
Duration? timeout,
}) async {
return await _bleCommandQueue.queueCommand(
() => _platform.unpair(deviceId),
deviceId: deviceId,
timeout: timeout,
);
}