looksLikeUrl function

bool looksLikeUrl(
  1. String text
)

Implementation

bool looksLikeUrl(String text) => _urlLikeRegexp.hasMatch(text);