hosts property

Returns an iterator over the usable hosts in the network.

Implementation

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