ipv4 property

RegExp ipv4
final

Matches a valid IPv4 address.

Implementation

static final RegExp ipv4 = RegExp(
  r'^((25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?)$',
);