firmwareTestSwap method
- required TransferType txType,
- bool autoReboot = false,
- String? destination,
Implementation
Future<bool> firmwareTestSwap({
required TransferType txType,
bool autoReboot = false,
String? destination,
}) async {
final response = await sendCommand<FirmwareUpdateTestSwapReply>(
FirmwareUpdateTestSwapBleCommandTx(
txType: txType,
autoReboot: autoReboot,
destination: destination,
),
);
return response != null && !response.hasErrors;
}