Ipv6.deserialize constructor

Ipv6.deserialize(
  1. CborBytesValue cbor
)

Deserialize an IPv6 instance from CBOR data.

Implementation

factory Ipv6.deserialize(CborBytesValue cbor) {
  return Ipv6(cbor.getValue());
}