ip method

ValidationBuilder ip([
  1. String? message
])

Value must be a well formatted IPv4 address

Implementation

ValidationBuilder ip([String? message]) => add((v) => _options.ipv4RegExp.hasMatch(v!) ? null : message ?? 'Invalid IPv4 address format.');