Ip6Address.fromBytes constructor

Ip6Address.fromBytes(
  1. List<int> bytes
)

Implementation

factory Ip6Address.fromBytes(List<int> bytes) {
  return Ip6Address.decode(RawReader.withBytes(bytes));
}