ip method
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.');
Value must be a well formatted IPv4 address
ValidationBuilder ip([String? message]) => add((v) => _options.ipv4RegExp.hasMatch(v!) ? null : message ?? 'Invalid IPv4 address format.');