isIPv6 static method

bool isIPv6(
  1. String ip
)

Whether ip is an IPv4 address.

Implementation

static bool isIPv6(String ip) {
  try {
    return InternetAddress(ip).type == InternetAddressType.IPv6;
  } catch (_) {
    return false;
  }
}