ip static method
Validate IP address.
Implementation
static String? ip(String? ipAddress, {TextValidateResponse? textResponse}) {
return _validateInput(ipAddress, RegularExpression.validateIPAddress,
textResponse, 'IP address');
}
Validate IP address.
static String? ip(String? ipAddress, {TextValidateResponse? textResponse}) {
return _validateInput(ipAddress, RegularExpression.validateIPAddress,
textResponse, 'IP address');
}