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