isValidUrl function

bool isValidUrl(
  1. String input
)

Implementation

bool isValidUrl(final String input) => validUrlRegex.hasMatch(input);