Returns true if is a IPv4 address.
true
bool isIPv4Address(String? host) { if (host == null) return false; return _regexpIpv4.hasMatch(host); }