Ensures the string is a valid URL.
static String? Function(String?) url({ String errorMessage = 'Please enter a valid URL', }) { return _build(errorMessage, (v) => v.isURL); }