isUrl function

bool isUrl(
  1. String content
)

Implementation

bool isUrl(String content) => _regexUrl.hasMatch(content);