ipv6 method

ValidationBuilder ipv6([
  1. String? message
])

Value must be a well formatted IPv6 address

Implementation

ValidationBuilder ipv6([String? message]) => add((v) => _options.ipv6RegExp.hasMatch(v!) ? null : message ?? 'Invalid IPv6 address format.');