destinationAddress property

IpAddress get destinationAddress

Implementation

IpAddress get destinationAddress => _parentPacketOrThrow.destination!;
set destinationAddress (IpAddress value)

Implementation

set destinationAddress(IpAddress value) {
  _parentPacketOrThrow.destination = value;
}