isUrl function

bool isUrl(
  1. String? url
)

Implementation

bool isUrl(String? url) {
  return validators.isURL(url);
}