Returns true if is a IPv4 or IPv6 address.
true
bool isIPAddress(String? host) { return isIPv4Address(host) || isIPv6Address(host); }