handleNak method
Process an NAK (negative acknowledgement) from the Z-Wave controller indicating that the message was corrupted
Implementation
@override
void handleNak() {
if (_sendCompleter != null) {
_errorWaitingForAck(ZwException.sendCorrupted);
} else {
_logger.warning('unexpected NAK');
}
}