isIpv6 function

bool isIpv6(
  1. String str
)

Returns true if str is a valid IPv6 address.

Implementation

bool isIpv6(String str) => ipv6.hasMatch(str);