handleAck method
Process an ACK (acknowledgement) from the Z-Wave controller indicating that the message was received
Implementation
@override
void handleAck() {
if (_sendCompleter != null) {
_sendCompleter!.complete();
_sendCompleter = null;
} else {
_logger.warning('unexpected ACK');
}
}