endpoint property

  1. @internal
CoapIEndPoint? endpoint

The endpoint for this request

Implementation

@internal
CoapIEndPoint? get endpoint => _endpoint;
  1. @internal
void endpoint=(CoapIEndPoint? endpoint)

Implementation

@internal
set endpoint(final CoapIEndPoint? endpoint) {
  super.id = endpoint!.nextMessageId;
  super.destination = endpoint.destination;
  _endpoint = endpoint;
}