isIPv6 property

bool get isIPv6

Returns true if string is a valid IPv6 address

Implementation

bool get isIPv6 => this != null && _ipv6Regex.hasMatch(this!);