$(D_PSYMBOL Nullable) containing the address if the range contains exactly 4 bytes, or nothing otherwise.
{
ubyte[4] actual = [127, 0, 0, 1];
assert(address4(actual[]).get.isLoopback());
}
{
ubyte[3] actual = [127, 0, 0];
assert(address4(actual[]).isNull);
}
{
ubyte[5] actual = [127, 0, 0, 0, 1];
assert(address4(actual[]).isNull);
}
Constructs an $(D_PSYMBOL Address4) from raw bytes in network byte order.