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 ?? _locale.ip(v));