hasValidUrl function

bool hasValidUrl(
  1. String value
)

Implementation

bool hasValidUrl(String value) {
  return _url.hasMatch(value);
}