call method

String? call(
  1. String? ipv6
)

Valid — returns null — if ipv6 is a non-blank, well-formed IPv6; otherwise, returns the blank error message if ipv6 is null, or the malformed error message if ipv6 is malformed.

Implementation

String? call(String? ipv6) => _reqIPv6(ipv6);