isIPv4 static method

bool isIPv4(
  1. String ip
)

Whether ip is an IPv4 address.

Implementation

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