call method

String? call(
  1. String? ipv4
)

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

Implementation

String? call(String? ipv4) => _reqIPv4(ipv4);