Extract all URLs from text.
text
List<String> extractUrls(String text) { return _urlRegex.allMatches(text).map((m) => m.group(0)!).toList(); }