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