isIPv4 property

bool get isIPv4

Returns true if string is a valid IPv4 address

Implementation

bool get isIPv4 => this != null && _ipv4Regex.hasMatch(this!);