isIPv4 property

bool get isIPv4

Checks if the string is a valid IPv4 address.

Implementation

bool get isIPv4 {
  return _isIP(this, 4);
}