addresses property

Returns an iterator over the all address in the network.

Implementation

@override
Iterable<IPv6Address> get addresses => bigIntRange(
        networkAddress.toBigInt(), broadcastAddress.toBigInt() + BigInt.one)
    .map((x) => IPv6Address.fromInt(x))
    .toList();