ipv6 property

RegExp ipv6
final

Matches a valid IPv6 address (simplified).

Implementation

static final RegExp ipv6 = RegExp(
  r'^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::1|::)$',
);