Ip6Address.decode constructor

Ip6Address.decode(
  1. RawReader reader
)

Implementation

factory Ip6Address.decode(RawReader reader) {
  return Ip6Address._(
    reader.readUint32(),
    reader.readUint32(),
    reader.readUint32(),
    reader.readUint32(),
  );
}